diff --git a/public/locales/en/auth.json b/public/locales/en/auth.json index e1a40d43..2a22f07c 100644 --- a/public/locales/en/auth.json +++ b/public/locales/en/auth.json @@ -45,7 +45,7 @@ "github_logging_in": "GitHub Logging in...", "github_cb_tip": "Please close this window and return widget window", "magic_link_expire": { - "title": "Magic link expired", + "title": "Magic link invalid or expired", "desc": "Go back to your original VoceChat tab and request a new magic link.", "desc_close": "You can close this window now." }, diff --git a/src/routes/reg/index.tsx b/src/routes/reg/index.tsx index 41df60e4..f4769155 100644 --- a/src/routes/reg/index.tsx +++ b/src/routes/reg/index.tsx @@ -25,7 +25,15 @@ export default function RegContainer() { return (
- {tokenIsValid ? : } + {magic_token ? ( + tokenIsValid ? ( + + ) : ( + + ) + ) : ( + + )}
);