Skip to content

Commit

Permalink
fix(fields): apply lint
Browse files Browse the repository at this point in the history
  • Loading branch information
louptheron committed Apr 26, 2023
1 parent dd2d5a1 commit a90800e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fields/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ export function Select<OptionValue extends OptionValueType = string>({
disabled={disabled}
id={originalProps.name}
onClean={handleClean}
// Since we customized `ItemDataType` type by adding `optionValue`, we have an optional vs required conflict
onSelect={handleSelect as any}
open={isOpen}
renderMenuItem={renderMenuItem}
searchable={searchable}
value={rsuiteValue}
open={isOpen}
// Since we customized `ItemDataType` type by adding `optionValue`, we have an optional vs required conflict
onSelect={handleSelect as any}
{...originalProps}
/>
)}
Expand Down

0 comments on commit a90800e

Please sign in to comment.