Skip to content

Commit

Permalink
Fixed typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntNerve committed Apr 26, 2024
1 parent c69ddbc commit a9e702a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface ITextFieldProps extends BaseInputProps {
className?: string;
error?: string;
baseInputClassName?: string;
onKeyDown?: VoidFunction;
onKeyDown?: (e: any) => false | Promise<void>;
}
export function Input({
className,
Expand Down

0 comments on commit a9e702a

Please sign in to comment.