From 389bf0b41f413ce5979fa9a7dbaca90a29a38b81 Mon Sep 17 00:00:00 2001 From: asharonbaltazar Date: Tue, 6 Dec 2022 12:26:19 -0500 Subject: [PATCH] feat: add NotificationProvider to _app.tsx --- frontend/pages/_app.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/pages/_app.js b/frontend/pages/_app.js index 6ed9af0131..8de8380268 100644 --- a/frontend/pages/_app.js +++ b/frontend/pages/_app.js @@ -4,6 +4,7 @@ import { config } from "@fortawesome/fontawesome-svg-core"; import { initPostHog } from "~/components/analytics/posthog"; import Layout from "~/components/basic/layout"; +import NotificationProvider from "~/components/context/NotificationProvider"; import RouteGuard from "~/components/RouteGuard"; import { publicPaths } from "~/const"; import { ENV } from "~/utilities/config"; @@ -46,9 +47,11 @@ const App = ({ Component, pageProps, ...appProps }) => { return ( - - - + + + + + ); };