From 054f5ae30d8dac715eb089f04762a46204e2d1b7 Mon Sep 17 00:00:00 2001 From: Kenny Jung Date: Thu, 29 Feb 2024 15:10:07 -0500 Subject: [PATCH 1/2] Update CODEOWNERS --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 646726d..71ce900 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @varunthakkar1 +* @chromium-52 From 43bc0a4a720b8f776c9a3cc513a6ff23752f12c6 Mon Sep 17 00:00:00 2001 From: Kenny Jung Date: Thu, 29 Feb 2024 15:27:56 -0500 Subject: [PATCH 2/2] Show incorrect email/password message --- src/components/modals/login-modal/LoginModal.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/modals/login-modal/LoginModal.tsx b/src/components/modals/login-modal/LoginModal.tsx index 84819f6..144de05 100644 --- a/src/components/modals/login-modal/LoginModal.tsx +++ b/src/components/modals/login-modal/LoginModal.tsx @@ -101,7 +101,11 @@ const LoginModal: React.FC = ({ {tokens.kind === AsyncRequestKinds.Failed && ( - {tokens.error} + + {tokens.error === 'Unauthorized user' + ? 'Email and/or password is incorrect' + : tokens.error} + )} );