aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-26 13:04:20 -0800
committerFuwn <[email protected]>2024-01-26 13:04:20 -0800
commit9188ef0dec7f5cdb46427014be8410c1f6c7b81e (patch)
tree0cfb3b406e3bb49c4298136fee31146614c5753e /src/stores
parentfix(html): more robust (ultimate) height limiter (diff)
downloaddue.moe-9188ef0dec7f5cdb46427014be8410c1f6c7b81e.tar.xz
due.moe-9188ef0dec7f5cdb46427014be8410c1f6c7b81e.zip
fix: authentication loop for identity
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/identity.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/identity.ts b/src/stores/identity.ts
index 765ce5b2..5229c4cd 100644
--- a/src/stores/identity.ts
+++ b/src/stores/identity.ts
@@ -4,7 +4,7 @@ import { writable } from 'svelte/store';
const defaultIdentity: UserIdentity = {
name: '',
- id: -1,
+ id: -2,
avatar: 'https://s4.anilist.co/file/anilistcdn/user/avatar/large/default.png'
};