1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-03-15 12:49:43 +01:00

Update punctuation in TriggerVerifyEmail.tsx (#6138)

- Removed a duplicate full stop from text displayed to the user during verifying email flow.
This commit is contained in:
Kaylum Snape 2024-07-12 15:50:51 +01:00 committed by GitHub
parent c7ed1bd59f
commit 26fad32246
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>