We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8804014 commit 55c7a95Copy full SHA for 55c7a95
1 file changed
src/components/form/Select.tsx
@@ -218,7 +218,9 @@ export function SelectForm({
218
isSearchable={isSearchable}
219
isClearable={isClearable}
220
isDisabled={disabled}
221
- isOptionDisabled={(option: { disabled: any }) => !!option.disabled}
+ isOptionDisabled={(option: { disabled: boolean | undefined }) =>
222
+ !!option.disabled
223
+ }
224
/>
225
<Error display={displayError} message={displayErrorMessage} />{" "}
226
</>
0 commit comments