diff options
| author | Fuwn <[email protected]> | 2026-01-29 19:19:50 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-29 19:19:50 -0800 |
| commit | 7e3c7c14d3e7940bc310784e852082504b2760ce (patch) | |
| tree | 3c7d0db5afbd53f50c9299d4da9c01485afb0968 /src/stores | |
| parent | feat(LandingHero): Make "See More" scroll past hero (diff) | |
| download | due.moe-7e3c7c14d3e7940bc310784e852082504b2760ce.tar.xz due.moe-7e3c7c14d3e7940bc310784e852082504b2760ce.zip | |
fix: Resolve all ESLint errors and warnings
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/stateBin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/stateBin.ts b/src/stores/stateBin.ts index 6f46593c..f724860a 100644 --- a/src/stores/stateBin.ts +++ b/src/stores/stateBin.ts @@ -27,7 +27,7 @@ if (browser) { const createProxyStore = (store: Writable<StateBin>) => { return new Proxy(store, { get(target, prop: string) { - if (prop in target) return (target as any)[prop]; + if (prop in target) return (target as unknown as Record<string, unknown>)[prop]; const derivedKey = writable(get(store)[prop]); |