diff --git a/apps/consent/app/layout.tsx b/apps/consent/app/layout.tsx index 549bc99a45..bc698ea134 100644 --- a/apps/consent/app/layout.tsx +++ b/apps/consent/app/layout.tsx @@ -5,9 +5,9 @@ import "react-toastify/dist/ReactToastify.css" import Script from "next/script" import type { Metadata } from "next" import { Inter_Tight } from "next/font/google" -import { ToastContainer } from "react-toastify" -import Theme from "../components/next-themes-provider" +import Theme from "@/components/next-themes-provider" +import ToastProvider from "@/components/toast-provider" const inter = Inter_Tight({ subsets: ["latin"] }) export const metadata: Metadata = { @@ -20,18 +20,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })