Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let users know that "Submit Feedback" can be used for email change #3174

Merged
merged 1 commit into from
Nov 13, 2024
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
1 change: 1 addition & 0 deletions static/app-strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2955,6 +2955,7 @@
"Are you a supermodel or rockstar that received a custom Credits code? Claim it here.": "Are you a supermodel or rockstar that received a custom Credits code? Claim it here.",
"Default action when clicking a playlist.": "Default action when clicking a playlist.",
"Default playlist action": "Default playlist action",
"Optionally the email change can be requested using \"Submit Feedback\" button below.": "Optionally the email change can be requested using \"Submit Feedback\" button below.",

"--end--": "--end--"
}
13 changes: 9 additions & 4 deletions ui/page/help/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,15 @@ export default function HelpPage(props: Props) {
<Card
title={__('Email change')}
subtitle={
<I18nMessage tokens={{ channel: <strong>#support</strong>, help_email: SITE_HELP_EMAIL }}>
Email address changes are processed manually on request via email. Email must come from the original email
being changed, or we'll need to verify ownership another way.
</I18nMessage>
<>
<I18nMessage tokens={{ channel: <strong>#support</strong>, help_email: SITE_HELP_EMAIL }}>
Email address changes are processed manually on request via email. Email must come from the original email
being changed, or we'll need to verify ownership another way.
</I18nMessage>{' '}
<I18nMessage>
Optionally the email change can be requested using "Submit Feedback" button below.
</I18nMessage>
</>
}
actions={
<Button button="secondary" label={__('Email Us')} icon={ICONS.WEB} href={`mailto:${SITE_HELP_EMAIL}`} />
Expand Down
Loading