Skip to content

Commit 152ea87

Browse files
committed
Final clean up
1 parent b3aa370 commit 152ea87

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

features/ui/select/select.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ export function Select<T>({
2626
value,
2727
onChange,
2828
placeholder = "Choose an option",
29-
defaultValue = "",
30-
iconSrc = "",
29+
defaultValue,
30+
iconSrc,
3131
disabled = false,
32-
label = "",
33-
hint = "",
34-
errorMessage = "",
32+
label,
33+
hint,
34+
errorMessage,
3535
...props
3636
}: SelectProps<T>) {
3737
const [showDropdown, setShowDropdown] = useState(false);

0 commit comments

Comments
 (0)