From d6e47f1acbc0df498225a0e619c9e1efc4caab97 Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 3 Jul 2024 03:22:00 +0200 Subject: [PATCH] fix(web): root redirect to /global --- web/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app.rs b/web/src/app.rs index 8992acd..1885468 100644 --- a/web/src/app.rs +++ b/web/src/app.rs @@ -113,7 +113,7 @@ pub fn App() -> impl IntoView { if auth.present() { view! { } } else { - view! { } + view! { } } /> } />