From c8907e7999e8ee334bca8287ee17faa1f6fc3865 Mon Sep 17 00:00:00 2001 From: spinline Date: Wed, 11 Feb 2026 19:08:57 +0300 Subject: [PATCH] revert: remove Toaster component and add test toast message --- frontend/src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app.rs b/frontend/src/app.rs index f82f70b..3d617c2 100644 --- a/frontend/src/app.rs +++ b/frontend/src/app.rs @@ -8,13 +8,12 @@ use leptos::task::spawn_local; use leptos_router::components::{Router, Routes, Route}; use leptos_router::hooks::use_navigate; use leptos_shadcn_skeleton::Skeleton; -use leptos_shadcn_toast::{Toaster, SonnerProvider}; +use leptos_shadcn_toast::SonnerProvider; #[component] pub fn App() -> impl IntoView { view! { - } @@ -64,6 +63,7 @@ fn InnerApp() -> impl IntoView { } is_loading.1.set(false); + crate::store::toast_success("VibeTorrent'e Hoşgeldiniz"); }); });