From c6a86dd22003b9cb019a59148190440f32447ec9 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 29 Mar 2026 00:12:47 -0700 Subject: [PATCH] feat(web): wire ToastProvider from @bytelyst/ui into NoteLett providers --- web/src/app/providers.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/src/app/providers.tsx b/web/src/app/providers.tsx index b7b0126..3444630 100644 --- a/web/src/app/providers.tsx +++ b/web/src/app/providers.tsx @@ -5,6 +5,7 @@ import { useEffect } from "react"; import { AuthProvider } from "@/lib/auth"; import { initDiagnostics } from "@/lib/diagnostics"; import { initTelemetry } from "@/lib/telemetry"; +import { ToastProvider } from "@bytelyst/ui"; export function Providers({ children }: { children: ReactNode }) { useEffect(() => { @@ -12,5 +13,9 @@ export function Providers({ children }: { children: ReactNode }) { initDiagnostics(); }, []); - return {children}; + return ( + + {children} + + ); }