fix hydration

This commit is contained in:
2025-02-07 14:44:48 +01:00
parent 16054b5677
commit a6ff9639c2

View File

@@ -57,7 +57,7 @@ pub fn Routes() -> impl leptos::IntoView {
<StyledHeader items=header_items /> <StyledHeader items=header_items />
<div class="container mx-auto mt-2"> <div class="container mx-auto mt-2">
{wall_uid.get().map(|wall_uid| view! {<Import wall_uid/>})} {move || wall_uid.get().map(|wall_uid| view! {<Import wall_uid/>})}
<Suspense fallback=|| view! {"loading"}> <Suspense fallback=|| view! {"loading"}>
<For <For