Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/next/src/pages/LockScreen/LockScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const LockScreen: FC<Props> = ({ unlockWallet }) => {
</WarningMessage>
)}

<Collapse in={isUIReady}>
<Collapse in={isUIReady} mountOnEnter unmountOnExit>
<Unlock
onUnlock={unlockWallet}
onForgotPasswordClick={showForgotPasswordModal}
Expand Down
1 change: 1 addition & 0 deletions apps/next/src/pages/LockScreen/components/Unlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const Unlock: React.FC<Props> = ({
return (
<Stack direction="column" width="100cqw" px="20px" mt={8}>
<PasswordField
autoFocus
onChange={(e) => setPassword(e.target.value)}
onKeyDown={shortcuts.onKeyDown}
error={!!error}
Expand Down
Loading