diff --git a/web/src/routes/discover/+page.svelte b/web/src/routes/discover/+page.svelte index d00badf6..cc751370 100644 --- a/web/src/routes/discover/+page.svelte +++ b/web/src/routes/discover/+page.svelte @@ -115,9 +115,16 @@ ]; - + +
+ -
{#if debouncedQ === ''} - +
+ +
{:else}

@@ -157,26 +166,28 @@ - {#if query.isError} - - {:else if query.isPending} -

Searching…

- {:else if results.length === 0} -

Nothing to add for that search yet.

- {:else} -
- {#each results as r (r.mbid)} - handleRequestClick(r)} - /> - {/each} -
- {/if} +
+ {#if query.isError} + + {:else if query.isPending} +

Searching…

+ {:else if results.length === 0} +

Nothing to add for that search yet.

+ {:else} +
+ {#each results as r (r.mbid)} + handleRequestClick(r)} + /> + {/each} +
+ {/if} +
{/if}