Skip to content

Commit

Permalink
styles: clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Feb 21, 2024
1 parent 60560e0 commit 430dc69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/bot-firewall/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const useBlockUnblockIpAddress = (
IP address <b>&nbsp;{data.data?.ip}&nbsp;</b> was{' '}
<b>&nbsp;{data.data?.blocked ? 'blocked' : 'unblocked'}&nbsp;</b> in the application firewall.{' '}
</div>,
{ ...snackbarOptions, variant: 'success', persist: true },
{ ...snackbarOptions, variant: 'success' },
);
},
onError: (error: Error) => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/personalization/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
Expand Down

0 comments on commit 430dc69

Please sign in to comment.