diff --git a/web/app/install/installForm.tsx b/web/app/install/installForm.tsx index 722abb4743..cdc519d56d 100644 --- a/web/app/install/installForm.tsx +++ b/web/app/install/installForm.tsx @@ -17,6 +17,7 @@ const InstallForm = () => { const [email, setEmail] = React.useState('') const [name, setName] = React.useState('') const [password, setPassword] = React.useState('') + const [showPassword, setShowPassword] = React.useState(false) const showErrorMessage = (message: string) => { Toast.notify({ type: 'error', @@ -108,12 +109,21 @@ const InstallForm = () => {