diff options
| author | Fuwn <[email protected]> | 2024-01-26 13:04:20 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-26 13:04:20 -0800 |
| commit | 9188ef0dec7f5cdb46427014be8410c1f6c7b81e (patch) | |
| tree | 0cfb3b406e3bb49c4298136fee31146614c5753e /src/stores | |
| parent | fix(html): more robust (ultimate) height limiter (diff) | |
| download | due.moe-9188ef0dec7f5cdb46427014be8410c1f6c7b81e.tar.xz due.moe-9188ef0dec7f5cdb46427014be8410c1f6c7b81e.zip | |
fix: authentication loop for identity
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/identity.ts | 2 |
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' }; |