Skip to content

Commit

Permalink
lets not omit size..
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsnes committed Oct 31, 2024
1 parent 139b533 commit c6bc083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/form/Search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const Search = forwardRef<HTMLInputElement, SearchProps>(
ref={mergedRef}
value={value ?? internalValue}
disabled={disabled}
{...omit(['size', 'error', 'errorId', 'readOnly'], rest)}
{...omit(['error', 'errorId', 'readOnly'], rest)}
type='search'
onChange={handleChange}
/>
Expand Down

0 comments on commit c6bc083

Please sign in to comment.