Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
include reading illustration when user is editing page
Browse files Browse the repository at this point in the history
  • Loading branch information
freitzzz committed Feb 12, 2023
1 parent 76d04da commit 35efeae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
QueryLeaksTargetDropdown,
SearchingIllustration,
FireIllustration,
NopeIllustration
NopeIllustration,
ReadingIllustration
} from '@components';
import { QueryLeaksStore } from '@stores';
import type { Target } from '@http';
Expand Down Expand Up @@ -99,6 +100,9 @@
<p>{$LL.throttledState()}</p>
{:else if !isEditing && affected.length === 0}
<HelloIllustration />
{:else}
<ReadingIllustration />
<p class="text-center">{$LL.editingState()}</p>
{/if}
</div>
</body>

0 comments on commit 35efeae

Please sign in to comment.