diff --git a/client/pages/Login.tsx b/client/pages/Login.tsx index f48a6e01..bdf4c286 100644 --- a/client/pages/Login.tsx +++ b/client/pages/Login.tsx @@ -96,6 +96,11 @@ export default function Login() { title: "Authentication Error", description: errorMessage, }); + } else if (errorType === "discord_no_match") { + toastError({ + title: "Discord Email Not Found", + description: decodeURIComponent(errorMessage) || "Your Discord email doesn't match any existing AeThex account. Please sign in with your email first.", + }); } } }, [location.search, toastError]);