browser message

This commit is contained in:
2026-02-06 03:15:38 -08:00
parent 722c133811
commit 9c52e32895

View File

@@ -2,6 +2,7 @@
import { useSearchParams } from "runed/kit";
import { onMount } from "svelte";
import { z } from "zod";
import { browser } from "$app/environment";
import { invalidate } from "$app/navigation";
import SongEntry from "$lib/components/SongEntry.svelte";
import { db as clientDb } from "$lib/db/client-db";
@@ -208,8 +209,12 @@
</ul>
{/if}
{#if data.malResponse?.paging?.next}
{#if browser && data.malResponse?.paging?.next}
<p class="mt-6 text-sm text-muted-foreground">
More results exist on MAL, but pagination is not wired yet.
</p>
{/if}
{#if !browser}
Loading stuff...
{/if}