chore: fix repo biome lint errors (#804)

This commit is contained in:
rahim
2026-03-09 21:10:18 -07:00
committed by GitHub
parent 5f729ed904
commit bd4e47b783
13 changed files with 53 additions and 38 deletions
@@ -151,7 +151,6 @@ class StateContainer<T> implements WritableState<T> {
// Apply partial updates with change detection
for (const key in partial) {
// biome-ignore lint/suspicious/noExplicitAny: T may be a primitive; `partial` is object-shaped at this branch
if (!Object.hasOwn(partial as any, key)) continue;
const value = (partial as Partial<T>)[key as keyof T];