Skip to content

Commit

Permalink
Merge pull request #212 from Code-4-Community/kjung/fix-misc-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chromium-52 authored Mar 6, 2024
2 parents 3b3f2ce + 43bc0a4 commit 1f27655
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @varunthakkar1
* @chromium-52
6 changes: 5 additions & 1 deletion src/components/modals/login-modal/LoginModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ const LoginModal: React.FC<LoginModalProps & StateProps> = ({
</Link>
</Text>
{tokens.kind === AsyncRequestKinds.Failed && (
<Text>{tokens.error}</Text>
<Text>
{tokens.error === 'Unauthorized user'
? 'Email and/or password is incorrect'
: tokens.error}
</Text>
)}
</ContentDiv>
);
Expand Down

0 comments on commit 1f27655

Please sign in to comment.