From f556d59ad70987cb4b5fdc85dd3f5387a5b95826 Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Wed, 2 Apr 2025 11:38:40 -0400 Subject: [PATCH] release/2025-03-28 - Add Cookies Provider --- client/src/App/App.container.jsx | 43 +++++++++++++++++--------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/client/src/App/App.container.jsx b/client/src/App/App.container.jsx index 67fd0f444..6702808d4 100644 --- a/client/src/App/App.container.jsx +++ b/client/src/App/App.container.jsx @@ -10,6 +10,7 @@ import client from "../utils/GraphQLClient"; import App from "./App"; import * as Sentry from "@sentry/react"; import themeProvider from "./themeProvider"; +import { CookiesProvider } from "react-cookie"; // Base Split configuration const config = { @@ -38,26 +39,28 @@ function AppContainer() { const { t } = useTranslation(); return ( - - - - - - - - - - + + + + + + + + + + + + ); }