diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e0ef03b3..56de98dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,7 @@ import { Inter } from "next/font/google"; import { Theme } from "@radix-ui/themes"; import "@radix-ui/themes/styles.css"; import AppBar from "@/components/_common/AppBar"; +import { Toaster } from "@/components/_common/Toast/toaster"; import "./global.css"; const inter = Inter({ @@ -28,6 +29,7 @@ const RootLayout = ({ children }: { children: React.ReactNode }) => { {children} + );