diff --git a/src/components/PasswordInput.tsx b/src/components/PasswordInput.tsx index db0839a..309fffd 100644 --- a/src/components/PasswordInput.tsx +++ b/src/components/PasswordInput.tsx @@ -8,8 +8,8 @@ interface TextInputWrapperProps { label: string labelLocation?: 'top' | 'left' | 'right' | 'bottom' // Optional prop for label location value: string - onKeyPress: (ev: KeyboardEvent) => void onChange: (ev: ChangeEvent) => void + onKeyPress?: (ev: KeyboardEvent) => void autoFocus?: boolean }