chore(dashboard): fix lint and typecheck

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-05-26 22:20:22 -07:00
parent 4e4830f592
commit cac08d733b
2 changed files with 2 additions and 2 deletions

View File

@@ -104,6 +104,6 @@ export function dedupe<T>(
if (inFlight.get(key) === entry) inFlight.delete(key);
},
);
inFlight.set(key, entry);
inFlight.set(key, entry as InFlightEntry<unknown>);
return entry.external;
}