diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 646726d8..71ce900f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @varunthakkar1 +* @chromium-52 diff --git a/src/components/modals/login-modal/LoginModal.tsx b/src/components/modals/login-modal/LoginModal.tsx index 84819f63..144de053 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} + )} );