feat(renderer): mount Toaster in App.tsx

This commit is contained in:
2026-06-05 22:52:04 +05:30
parent 3ff76c8c33
commit 54615649f4
+2
View File
@@ -1,5 +1,6 @@
import { AppShell } from './components/layout/AppShell';
import { ModalLayer } from './components/modals/ModalLayer';
import { Toaster } from './components/ui/sonner';
import { useWelcomeTrigger } from './hooks/use-welcome-trigger';
function App() {
@@ -8,6 +9,7 @@ function App() {
<>
<AppShell />
<ModalLayer />
<Toaster />
</>
);
}