From b17dbb0a9113c4e4d5391740dec103f7437f0045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louise=20Linn=C3=A9?= Date: Fri, 29 Sep 2023 00:48:29 +0200 Subject: [PATCH] Fix error notification --- locales/en.json | 2 +- src/components/ButtonDeleteProfile.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/locales/en.json b/locales/en.json index b2d1013d..b74a4b30 100644 --- a/locales/en.json +++ b/locales/en.json @@ -352,7 +352,7 @@ "btnText": "Delete Profile Data", "confirmationDelete": "Delete", "confirmationCancel": "Cancel", - "notificationError": "Oops, something went wrong. Try again!", + "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" }, diff --git a/src/components/ButtonDeleteProfile.js b/src/components/ButtonDeleteProfile.js index 9a268fe4..db2323e4 100644 --- a/src/components/ButtonDeleteProfile.js +++ b/src/components/ButtonDeleteProfile.js @@ -52,7 +52,7 @@ const ButtonDeleteProfile = () => { notify({ text: ( - {translate('ButtonDeleteProfile.notification.Error')} + {translate('ButtonDeleteProfile.notificationError')} ), type: NotificationsTypes.ERROR,