diff --git a/src/components/custom-ui/labeled-input.tsx b/src/components/custom-ui/labeled-input.tsx index c745114..5505e14 100644 --- a/src/components/custom-ui/labeled-input.tsx +++ b/src/components/custom-ui/labeled-input.tsx @@ -32,7 +32,9 @@ export default function LabeledInput({ error?: string; } & React.InputHTMLAttributes) { const [passwordVisible, setPasswordVisible] = React.useState(false); - const [inputValue, setInputValue] = React.useState(value || defaultValue || ''); + const [inputValue, setInputValue] = React.useState( + value || defaultValue || '', + ); const handleInputChange = (e: React.ChangeEvent) => { setInputValue(e.target.value);