diff --git a/src/common/Alerts/AlertProfileVerification.tsx b/src/common/Alerts/AlertProfileVerification.tsx
index 7f9c6c89a9..d06e48166f 100644
--- a/src/common/Alerts/AlertProfileVerification.tsx
+++ b/src/common/Alerts/AlertProfileVerification.tsx
@@ -20,7 +20,7 @@ export const AlertProfileVerification = () => {
const isVerificationSuccessful = verificationState === 'sent'
const isVerificationPending = verificationState === 'pending'
const alertLabel = isVerificationPending
- ? 'Click here to receive an email to confirm your account.'
+ ? 'Click here to receive an email to confirm your account'
: "Sorry, we couldn't send an email. Please try again later."
const successLabelMessage =
'Verification email sent. Please check your inbox and spam folder. '
@@ -55,12 +55,12 @@ export const AlertProfileVerification = () => {
)}
{!isVerificationSuccessful && (
-
+ <>
{isVerificationPending && (
)}
- {alertLabel}
-
+ {alertLabel}
+ >
)}