diff --git a/src/screens/Settings/components/AddAppPasswordDialog.tsx b/src/screens/Settings/components/AddAppPasswordDialog.tsx index 9278757786..17e5333346 100644 --- a/src/screens/Settings/components/AddAppPasswordDialog.tsx +++ b/src/screens/Settings/components/AddAppPasswordDialog.tsx @@ -22,6 +22,7 @@ import * as Dialog from '#/components/Dialog' import * as TextInput from '#/components/forms/TextField' import * as Toggle from '#/components/forms/Toggle' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' +import {Eye_Stroke2_Corner0_Rounded as EyeIcon} from '#/components/icons/Eye' import {SquareBehindSquare4_Stroke2_Corner0_Rounded as CopyIcon} from '#/components/icons/SquareBehindSquare4' import {Text} from '#/components/Typography' import {CopyButton} from './CopyButton' @@ -47,6 +48,7 @@ function CreateDialogInner({passwords}: {passwords: string[]}) { const t = useTheme() const {_} = useLingui() const autogeneratedName = useRandomName() + const [showPassword, setShowPassword] = useState(false) const [name, setName] = useState('') const [privileged, setPrivileged] = useState(false) const { @@ -191,15 +193,37 @@ function CreateDialogInner({passwords}: {passwords: string[]}) { Use this to sign into the other app along with your handle. - - {data.password} - - + + + + + {data.password} + + + + + +