Skip to content

Commit

Permalink
Fix error notification
Browse files Browse the repository at this point in the history
  • Loading branch information
louilinn committed Oct 10, 2023
1 parent 05e5396 commit d35570b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
"btnText": "Delete Profile Data",
"confirmationDelete": "Delete",
"confirmationCancel": "Cancel",
"notificationError": "Oops, something went wrong. <b>Try again!</b>",
"notificationError": "Oops, something went wrong. Try again!",
"notificationSuccess": "The profile data of this wallet has successfully been deleted. You can end session in Settings.",
"readMore": "Read more"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/ButtonDeleteProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ButtonDeleteProfile = () => {
notify({
text: (
<Typography classes={{ root: 'body4_white' }} variant="body4">
{translate('ButtonDeleteProfile.notification.Error')}
{translate('ButtonDeleteProfile.notificationError')}
</Typography>
),
type: NotificationsTypes.ERROR,
Expand Down

0 comments on commit d35570b

Please sign in to comment.