diff --git a/web/src/app/providers.tsx b/web/src/app/providers.tsx
index 610978b..f66ee89 100644
--- a/web/src/app/providers.tsx
+++ b/web/src/app/providers.tsx
@@ -6,6 +6,7 @@ import { AuthProvider } from '@/lib/auth-context';
import { initTelemetry, trackPageView } from '@/lib/telemetry';
import { initFeatureFlags } from '@/lib/feature-flags';
import { initDiagnostics } from '@/lib/diagnostics';
+import { ToastProvider } from '@bytelyst/ui';
import type { ReactNode } from 'react';
export function Providers({ children }: { children: ReactNode }) {
@@ -23,5 +24,9 @@ export function Providers({ children }: { children: ReactNode }) {
}
}, [pathname]);
- return {children};
+ return (
+
+ {children}
+
+ );
}