From f8a7a83e0590c940494a309999bbe73a986c796c Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Fri, 25 Aug 2023 12:40:13 +0200 Subject: [PATCH] Update snaps-related copy (#20601) * Update snaps-related copy * Update test --- app/_locales/en/messages.json | 4 ++-- ui/pages/notifications/notification.test.js | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index f56f863aa..9f05ce88d 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -1559,7 +1559,7 @@ "message": "Explore MetaMask Snaps" }, "extendWalletWithSnaps": { - "message": "Extend the wallet experience." + "message": "Customize your wallet experience." }, "externalExtension": { "message": "External extension" @@ -2864,7 +2864,7 @@ "message": "👓 We are making transactions easier to read." }, "notificationsEmptyText": { - "message": "Nothing to see here." + "message": "This is where you can find notifications from your installed snaps." }, "notificationsHeader": { "message": "Notifications" diff --git a/ui/pages/notifications/notification.test.js b/ui/pages/notifications/notification.test.js index cf408b246..4734731c8 100644 --- a/ui/pages/notifications/notification.test.js +++ b/ui/pages/notifications/notification.test.js @@ -66,7 +66,11 @@ describe('Notifications', () => { const { getByText, getByRole } = render(mockStore); - expect(getByText('Nothing to see here.')).toBeDefined(); + expect( + getByText( + 'This is where you can find notifications from your installed snaps.', + ), + ).toBeDefined(); expect(getByRole('button', { name: 'Mark all as read' })).toBeDisabled(); }); });