Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
luizakp committed Aug 20, 2024
1 parent eb1bc66 commit 7cd4b5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/FormBuilder/fields/InputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ export const InputField = withConditional<InputFieldProps>(
}
defaultValue={field.defaultValue}
render={({ field: formField }) => (
<FormItem className={cn( field.mode === "time" ? "w-[240px]": "w-full")}>
<FormItem
className={cn(field.mode === "time" ? "w-[240px]" : "w-full")}
>
<FormLabel tooltip={field.tooltip}>{field.label}</FormLabel>
<FormDescription>{field.description}</FormDescription>
<FormControl>
Expand Down

0 comments on commit 7cd4b5a

Please sign in to comment.