diff options
| author | Fuwn <[email protected]> | 2024-04-19 20:54:09 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-19 20:54:09 -0700 |
| commit | ec4cb5aabdb56da91dca2791cadbea25f2d4bbfe (patch) | |
| tree | e649458b7692b35a4a939df0ba8c4ff9d595d0db | |
| parent | feat(badges): show badge id on dev (diff) | |
| download | due.moe-ec4cb5aabdb56da91dca2791cadbea25f2d4bbfe.tar.xz due.moe-ec4cb5aabdb56da91dca2791cadbea25f2d4bbfe.zip | |
feat(badges): move notice to owner
| -rw-r--r-- | src/routes/user/[user]/badges/+page.svelte | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/routes/user/[user]/badges/+page.svelte b/src/routes/user/[user]/badges/+page.svelte index 505f32e4..3e8c8fad 100644 --- a/src/routes/user/[user]/badges/+page.svelte +++ b/src/routes/user/[user]/badges/+page.svelte @@ -459,15 +459,6 @@ {:then identity} {@const isOwner = identity && (isId ? identity.id : identity.name) === data.username} - <div class="card"> - <b>Notice:</b> AniList has begun purging outbound links which contain AI-generated material, this - includes Badge Wall. If you have collected badges with AI-generated elements, kindly use the hide - feature to hide these badges from the public, while allowing them to stay visible to you as the - account holder. - </div> - - <p /> - {#await badgesPromise} <Message message="Loading badges ..." /> @@ -531,6 +522,15 @@ {#if isOwner} <div class="card"> + <b>Notice:</b> AniList has begun purging outbound links which contain AI-generated + material, this includes Badge Wall. If you have collected badges with AI-generated + elements, kindly use the hide feature to hide these badges from the public, while allowing + them to stay visible to you as the account holder. + </div> + + <p /> + + <div class="card"> <button on:click={() => { selectedBadge = undefined; |