1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-24 01:11:23 +00:00

Fix another hydration error

This commit is contained in:
Felix Ableitner 2024-12-10 10:35:30 +01:00
parent ead72c1ebc
commit 971e3ed80f

View file

@ -54,6 +54,7 @@ pub fn InstanceDetails() -> impl IntoView {
<div>{instance.description}</div> <div>{instance.description}</div>
<h2 class="font-serif text-xl font-bold">Articles</h2> <h2 class="font-serif text-xl font-bold">Articles</h2>
<ul class="list-none"> <ul class="list-none">
<Suspense>
{move || { {move || {
articles articles
.get() .get()
@ -71,7 +72,7 @@ pub fn InstanceDetails() -> impl IntoView {
.collect::<Vec<_>>() .collect::<Vec<_>>()
}) })
}} }}
</Suspense>
</ul> </ul>
</div> </div>
} }