fix: TS errors

This commit is contained in:
Slinetrac
2025-10-18 16:11:42 +08:00
parent c465000178
commit 98725bbecf
8 changed files with 15 additions and 15 deletions

View File

@@ -90,7 +90,7 @@ export const AppDataProvider = ({
const refreshThrottle = 500;
let isUnmounted = false;
const scheduledTimeouts = new Set<ReturnType<typeof setTimeout>>();
const scheduledTimeouts = new Set<number>();
const cleanupFns: Array<() => void> = [];
const registerCleanup = (fn: () => void) => {