Skip to content

Commit

Permalink
fix(copy): device mistmatch toast
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Sep 2, 2021
1 parent f308713 commit 974c06d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"components.alerts.currency_update_success": "Currency has been successfully updated",
"components.alerts.deauthorize_browser_error": "Failed to deauthorize this browser.",
"components.alerts.deauthorize_browser_success": "Browser was successfully deauthorized.",
"components.alerts.device_mismatch": "Device mismatch.",
"components.alerts.device_mismatch": "Device verification failed. Please refresh and try again.",
"components.alerts.document_upload_error": "Failed to upload document.",
"components.alerts.email_code_sent_success": "Confirmation code has been sent.",
"components.alerts.email_update_error": "Failed to update email address.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ type MessagesType = {
'components.alerts.currency_update_success': 'Currency has been successfully updated'
'components.alerts.deauthorize_browser_error': 'Failed to deauthorize this browser.'
'components.alerts.deauthorize_browser_success': 'Browser was successfully deauthorized.'
'components.alerts.device_mismatch': 'Device mismatch.'
'components.alerts.device_mismatch': 'Device verification failed. Please refresh and try again.'
'components.alerts.document_upload_error': 'Failed to upload document.'
'components.alerts.email_code_sent_success': 'Confirmation code has been sent.'
'components.alerts.email_update_error': 'Failed to update email address.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const getAlertContent = (message, data = undefined) => {
return buildMessageTemplate(
<FormattedMessage
id='components.alerts.device_mismatch'
defaultMessage='Device mismatch.'
defaultMessage='Device verification failed. Please refresh and try again.'
/>
)
case C.EMAIL_CODE_SENT_SUCCESS:
Expand Down

0 comments on commit 974c06d

Please sign in to comment.