Skip to content

Commit

Permalink
fix: skipping bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kurozenzen committed Feb 18, 2024
1 parent 99838fb commit 5ff5326
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,7 @@

<ResultHeader on:sortfilterupdate {loading} />

{#if loading}
<div />
{:else if error}
{#if error}
<SearchError {error} />
{:else if $results.requested}
<section>
Expand Down Expand Up @@ -252,6 +250,10 @@
<ScrollUpButton />
{/if}

{#if loading}
<div />
{/if}

<CreateSupertagDialog
bind:dialog={createSupertagDialog}
tags={$activeTags}
Expand Down

0 comments on commit 5ff5326

Please sign in to comment.