From 9c3c339f48e3109a0101c7310d58594b1bd6348b Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Sat, 21 Feb 2026 11:04:43 -0800 Subject: [PATCH] fix: prefix unused watcherReady with underscore --- apps/web/app/api/workspace/watch/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;}