From 56b260205343cc69aad4a3d760ac81d26a07f26b Mon Sep 17 00:00:00 2001 From: Linda Peng Date: Mon, 12 Apr 2021 23:56:40 -0700 Subject: [PATCH] Added explanatory text re: verifying email --- src/components/Auth/VerifyEmail.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/components/Auth/VerifyEmail.js b/src/components/Auth/VerifyEmail.js index c2eabb3..0f04452 100644 --- a/src/components/Auth/VerifyEmail.js +++ b/src/components/Auth/VerifyEmail.js @@ -25,17 +25,24 @@ const VerifyEmail = () => { setError(e.message); }); } else { - setError('There is no key in the URL string.'); + setError('There is no key in the URL.'); } }, [key]); return (
- {verifyStatus && {`${verifyStatus}`}} + {verifyStatus ? ( + {`${verifyStatus}`} + ) : ( +

+ Thank you for signing up! Please check your email to verify your + account. +

+ )} {error && {`${error}`}}
- go back home + Home
);