From c83ba6eb7d34676a4dc846f8541bf4c0f412de7d Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Thu, 29 Jan 2026 16:51:20 +0100 Subject: [PATCH] feat: add `NotificationHandler` component to layout - Integrated `NotificationHandler` into the app layout for centralized notification management. - Ensured compatibility with existing `Toaster` component for consistent user feedback. --- frontend/src/app/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index b7cc4cb..921aa04 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata } from "next"; import { Ubuntu_Mono, Ubuntu_Sans } from "next/font/google"; +import { NotificationHandler } from "@/components/notification-handler"; import { Toaster } from "@/components/ui/sonner"; import { AudioProvider } from "@/providers/audio-provider"; import { AuthProvider } from "@/providers/auth-provider"; @@ -76,6 +77,7 @@ export default function RootLayout({ {children} +