Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #239 from brave/update-wallet-support-info
Browse files Browse the repository at this point in the history
Updated End of Flow Message to Support Link
  • Loading branch information
Douglashdaniel authored May 14, 2021
2 parents 2d0fcaa + 403f16a commit 1135a2e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@
"message": "If you need to back up your seed phrase again, you can find it in Settings -> Security."
},
"endOfFlowMessage7": {
"message": "If you ever have questions or see something fishy, email support@brave.com."
"message": "If you ever have questions or see something fishy, visit our wallet"
},
"endOfFlowMessage8": {
"message": "Brave cannot recover your seedphrase."
Expand All @@ -568,6 +568,9 @@
"endOfFlowMessage10": {
"message": "All Done"
},
"endOfFlowMessage11": {
"message": "support forum."
},
"externalExtension": {
"message": "External Extension"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,16 @@ export default class EndOfFlowScreen extends PureComponent {
{ '• ' + t('endOfFlowMessage6') }
</div>
<div className="end-of-flow__text-3">
{ '• ' + t('endOfFlowMessage7') }
{ '• ' + t('endOfFlowMessage7') }&nbsp;
<a
href="https://community.brave.com/c/support-and-troubleshooting/wallet/131"
target="_blank"
rel="noopener noreferrer"
>
<span className="first-time-flow__link-text-underlined">
{t('endOfFlowMessage11')}
</span>
</a>
</div>
<div className="first-time-flow__text-block end-of-flow__text-4">
{ '*' + t('endOfFlowMessage8') }&nbsp;
Expand Down
5 changes: 5 additions & 0 deletions ui/app/pages/first-time-flow/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,9 @@
&__link-text {
color: $primary-blue;
}

&__link-text-underlined {
color: $primary-blue;
text-decoration: underline;
}
}

0 comments on commit 1135a2e

Please sign in to comment.