Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Remove ineffective white space characters from VerifyEmailModal.tsx #10141

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export const VerifyEmailModal: React.FC<Props> = ({
<h1>{_t("Verify your email to continue")}</h1>
<p>
{_t(
`We need to know it’s you before resetting your password.
Click the link in the email we just sent to <b>%(email)s</b>`,
"We need to know it’s you before resetting your password. " +
"Click the link in the email we just sent to <b>%(email)s</b>",
{
email,
},
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -3583,7 +3583,7 @@
"The email address doesn't appear to be valid.": "The email address doesn't appear to be valid.",
"Sign in instead": "Sign in instead",
"Verify your email to continue": "Verify your email to continue",
"We need to know it’s you before resetting your password.\n Click the link in the email we just sent to <b>%(email)s</b>": "We need to know it’s you before resetting your password.\n Click the link in the email we just sent to <b>%(email)s</b>",
"We need to know it’s you before resetting your password. Click the link in the email we just sent to <b>%(email)s</b>": "We need to know it’s you before resetting your password. Click the link in the email we just sent to <b>%(email)s</b>",
"Commands": "Commands",
"Command Autocomplete": "Command Autocomplete",
"Emoji Autocomplete": "Emoji Autocomplete",
Expand Down