From 91316c99af99b90bdc58ae75bf259eac106bfc1e Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 29 May 2024 18:04:27 +0200 Subject: [PATCH] fix(web): preload local, preload if logged out --- web/src/app.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/src/app.rs b/web/src/app.rs index a4b37454..a99e31e0 100644 --- a/web/src/app.rs +++ b/web/src/app.rs @@ -59,9 +59,13 @@ pub fn App() -> impl IntoView { } server_tl.more(auth); + local_tl.more(auth); if auth_present { home_tl.more(auth) }; }) - }; + } else { + server_tl.more(auth); + local_tl.more(auth); + } view! {