From 7e3c7c14d3e7940bc310784e852082504b2760ce Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 29 Jan 2026 19:19:50 -0800 Subject: fix: Resolve all ESLint errors and warnings --- src/stores/stateBin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stores/stateBin.ts') 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) => { 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)[prop]; const derivedKey = writable(get(store)[prop]); -- cgit v1.2.3