diff options
| author | Fuwn <[email protected]> | 2023-12-22 03:22:42 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-22 03:22:42 -0800 |
| commit | 7d75fd49b4d34faec559fc98817c4c0ca4af05b6 (patch) | |
| tree | a7a4fd9a06f0eb99e492001623f702ea0eaa4d72 /src/lib/Tools | |
| parent | feat(wrapped): custom loading message (diff) | |
| download | due.moe-7d75fd49b4d34faec559fc98817c4c0ca4af05b6.tar.xz due.moe-7d75fd49b4d34faec559fc98817c4c0ca4af05b6.zip | |
feat(wrapped): custom loading messages all around
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index 6445189c..ab1ac125 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -348,7 +348,7 @@ {@html nbsp(`Loading${useFullActivityHistory ? ' full-year' : ''} activity history ...`)} {:then activities} {#await wrapped(user, currentUserIdentity)} - Loading ... + {@html nbsp('Loading user data ...')} {:then wrapped} <div id="wrapped" @@ -432,7 +432,7 @@ </ol> </div> {:else} - Loading ... + {@html nbsp('Loading anime list ...')} {/if} </div> </div> @@ -460,7 +460,7 @@ </ol> </div> {:else} - Loading ... + {@html nbsp('Loading manga list ...')} {/if} </div> </div> @@ -557,7 +557,7 @@ /> {/await} {:else} - Loading ... + {@html nbsp('Loading user identity ...')} {/if} <style> |