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', });