From 298614cf22f178d06a2dd00b68ff8b1bab467e21 Mon Sep 17 00:00:00 2001 From: Tristan Yang Date: Fri, 2 Dec 2022 08:10:27 +0800 Subject: [PATCH] chore: typo --- src/common/component/GoogleLoginButton.tsx | 2 +- src/routes/callback/GithubCallback.tsx | 2 +- src/routes/login/index.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/component/GoogleLoginButton.tsx b/src/common/component/GoogleLoginButton.tsx index 15c8b17b..77279ebe 100644 --- a/src/common/component/GoogleLoginButton.tsx +++ b/src/common/component/GoogleLoginButton.tsx @@ -75,7 +75,7 @@ const GoogleLoginInner: FC = ({ type = "login", loaded, loadError }) => { switch (error.status) { case 410: toast.error( - "No associated account found, please user admin for an invitation link to join." + "No associated account found, please contact user admin for an invitation link to join." ); break; default: diff --git a/src/routes/callback/GithubCallback.tsx b/src/routes/callback/GithubCallback.tsx index eb3d54b2..c21de8c6 100644 --- a/src/routes/callback/GithubCallback.tsx +++ b/src/routes/callback/GithubCallback.tsx @@ -40,7 +40,7 @@ const GithubCallback: FC = ({ code, from = "webapp" }) => { switch ((error as FetchBaseQueryError).status) { case 410: toast.error( - "No associated account found, please user admin for an invitation link to join." + "No associated account found, please contact user admin for an invitation link to join." ); break; default: diff --git a/src/routes/login/index.tsx b/src/routes/login/index.tsx index bf7472f9..1cf151c8 100644 --- a/src/routes/login/index.tsx +++ b/src/routes/login/index.tsx @@ -71,7 +71,7 @@ export default function LoginPage() { break; case 410: toast.error( - "No associated account found, please user admin for an invitation link to join." + "No associated account found, please contact user admin for an invitation link to join." ); break; case 451: