diff --git a/apps/web/app/api/workspace/watch/route.ts b/apps/web/app/api/workspace/watch/route.ts index e75777ced84..9bb11bb50ef 100644 --- a/apps/web/app/api/workspace/watch/route.ts +++ b/apps/web/app/api/workspace/watch/route.ts @@ -15,7 +15,7 @@ let listeners = new Set(); // eslint-disable-next-line @typescript-eslint/no-explicit-any let sharedWatcher: any = null; let sharedRoot: string | null = null; -let __watcherReady = false; +let _watcherReady = false; async function ensureWatcher(root: string) { if (sharedWatcher && sharedRoot === root) {return;}