From cb3b2e64ad99fbbbb29938bccb35596d39daf328 Mon Sep 17 00:00:00 2001 From: Kirill Date: Mon, 25 May 2026 17:41:44 +0500 Subject: [PATCH] feat: mount CartSnackbar in AppProviders --- client/src/app/providers/AppProviders.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/app/providers/AppProviders.tsx b/client/src/app/providers/AppProviders.tsx index 2e26cf5..460d647 100644 --- a/client/src/app/providers/AppProviders.tsx +++ b/client/src/app/providers/AppProviders.tsx @@ -3,6 +3,7 @@ import CssBaseline from '@mui/material/CssBaseline' import { ThemeProvider, createTheme } from '@mui/material/styles' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { ThemeControllerProvider, useThemeController } from '@/app/providers/theme-controller' +import { CartSnackbar } from '@/shared/ui/CartSnackbar' import { SseProvider } from './SseProvider' function AppThemeInner({ children }: PropsWithChildren) { @@ -187,6 +188,7 @@ export function AppProviders({ children }: PropsWithChildren) { return ( + {children}