Skip to content

Commit

Permalink
Make sure password is not visible
Browse files Browse the repository at this point in the history
Related to #183
  • Loading branch information
nop33 committed Aug 15, 2023
1 parent 7753fff commit f031ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PasswordModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const PasswordModal = ({ onClose, onPasswordEntered }: PasswordModalProps) => {
<ModalWithBackdrop visible animationType="fade" closeModal={onClose} color={theme.bg.primary}>
<ScreenStyled>
<ScreenSectionStyled fill>
<Input label="Password" value={password} onChangeText={setPassword} />
<Input label="Password" value={password} onChangeText={setPassword} secureTextEntry />
</ScreenSectionStyled>
<BottomScreenSection>
<ButtonsRow>
Expand Down

0 comments on commit f031ba1

Please sign in to comment.