Update punctuation in TriggerVerifyEmail.tsx (#6138)

- Removed a duplicate full stop from text displayed to the user during verifying email flow.
pull/6153/head
Kaylum Snape 4 months ago committed by GitHub
parent c7ed1bd59f
commit 26fad32246
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/components/AuthenticationFlow/TriggerVerifyEmail.tsx

@ -73,7 +73,7 @@ export function TriggerVerifyEmail() {
Verifying your new Email
</h2>
<div className="text-sm sm:text-base">
{isLoading && <p>Please wait while we verify your new Email..</p>}
{isLoading && <p>Please wait while we verify your new Email.</p>}
{error && <p className="text-red-700">{error}</p>}
</div>
</div>

Loading…
Cancel
Save