From 430dc69123e01074f79e2b3f025a5791ef53d8fa Mon Sep 17 00:00:00 2001 From: Juraj Uhlar Date: Wed, 21 Feb 2024 20:03:46 +0000 Subject: [PATCH] styles: clean-up --- src/pages/bot-firewall/index.tsx | 2 +- src/pages/personalization/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/bot-firewall/index.tsx b/src/pages/bot-firewall/index.tsx index e88620bb..ed224a27 100644 --- a/src/pages/bot-firewall/index.tsx +++ b/src/pages/bot-firewall/index.tsx @@ -95,7 +95,7 @@ const useBlockUnblockIpAddress = ( IP address  {data.data?.ip}  was{' '}  {data.data?.blocked ? 'blocked' : 'unblocked'}  in the application firewall.{' '} , - { ...snackbarOptions, variant: 'success', persist: true }, + { ...snackbarOptions, variant: 'success' }, ); }, onError: (error: Error) => { diff --git a/src/pages/personalization/index.tsx b/src/pages/personalization/index.tsx index 5a0aab04..9e1e5cb6 100644 --- a/src/pages/personalization/index.tsx +++ b/src/pages/personalization/index.tsx @@ -61,7 +61,7 @@ export default function Index({ embed }: CustomPageProps) { !userWelcomed && (searchHistoryQuery.data?.data?.length || hasDarkMode || cartQuery.data?.data?.length) ) { - enqueueSnackbar('Welcome back! We applied your dark mode preference and synced your cart and search terms.', { + enqueueSnackbar('Welcome back! We synced your cart and search terms.', { variant: 'info', className: 'WelcomeBack', });