We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e62d547 commit c22b6f6Copy full SHA for c22b6f6
apps/next/src/pages/LockScreen/LockScreen.tsx
@@ -57,7 +57,7 @@ export const LockScreen: FC<Props> = ({ unlockWallet }) => {
57
</WarningMessage>
58
)}
59
60
- <Collapse in={isUIReady}>
+ <Collapse in={isUIReady} mountOnEnter unmountOnExit>
61
<Unlock
62
onUnlock={unlockWallet}
63
onForgotPasswordClick={showForgotPasswordModal}
apps/next/src/pages/LockScreen/components/Unlock.tsx
@@ -45,6 +45,7 @@ export const Unlock: React.FC<Props> = ({
45
return (
46
<Stack direction="column" width="100cqw" px="20px" mt={8}>
47
<PasswordField
48
+ autoFocus
49
onChange={(e) => setPassword(e.target.value)}
50
onKeyDown={shortcuts.onKeyDown}
51
error={!!error}
0 commit comments