Skip to content

Commit

Permalink
Fix optional prop not being set as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
wniestroj committed Nov 26, 2024
1 parent 5da7134 commit 36a5ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend-v2/src/components/TextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Props<T extends FieldValues> = {
mode?: "onChange" | "onBlur";
textFieldProps?: TextFieldProps;
autoShrink?: boolean;
size: 'small' | 'medium'
size?: 'small' | 'medium'
sx?: SxProps;
};

Expand Down

0 comments on commit 36a5ea9

Please sign in to comment.