Skip to content

Commit

Permalink
fix: input component invalid props
Browse files Browse the repository at this point in the history
  • Loading branch information
gentle.liu committed Aug 8, 2024
1 parent 2bb5af4 commit 7e1ee8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const Input = forwardRef<InputRef, InputProps>((props, ref) => {
max={mergedProps.max}
min={mergedProps.min}
autoComplete={mergedProps.autoComplete}
enterKeyHint={mergedProps.enterKeyHint}
enterkeyhint={mergedProps.enterKeyHint}
autoFocus={mergedProps.autoFocus}
pattern={mergedProps.pattern}
inputMode={mergedProps.inputMode}
Expand Down

0 comments on commit 7e1ee8d

Please sign in to comment.