Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
17Amir17 committed Sep 25, 2024
1 parent 7e4879d commit 62e49a8
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ export const NewAlreadyRegisteredScreen: React.FC = () => {
await dispatch({
type: "load-after-login",
storage: storageResult.value,
encryptionKey: encryptionKey
encryptionKey: encryptionKey,
newUi: true
});
} catch (e) {
setIsLoggingIn(false);
Expand Down Expand Up @@ -211,7 +212,7 @@ export const NewAlreadyRegisteredScreen: React.FC = () => {
autoCorrect="off"
type="text"
autoFocus
value={email}
defaultValue={email}
disabled
/>
<Input2
Expand All @@ -226,7 +227,7 @@ export const NewAlreadyRegisteredScreen: React.FC = () => {
error={error}
/>
<Button2 type="submit" disabled={isLoggingIn}>
{isLoggingIn ? "Verifying" : "Sign in "}
{isLoggingIn ? "Verifying..." : "Sign in "}
</Button2>
</StyledLoginForm>
);
Expand Down

0 comments on commit 62e49a8

Please sign in to comment.