From e4c3bb80fadd6de154d2e5c96dd07bb6f4e043cf Mon Sep 17 00:00:00 2001 From: Carl Vitullo Date: Thu, 16 Oct 2025 20:58:10 -0400 Subject: [PATCH] Stop making threads in #help-js --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d9fc041f..4899d6da 100644 --- a/src/index.ts +++ b/src/index.ts @@ -227,7 +227,7 @@ addHandler( ], jobScanner, ); -const threadChannels = [CHANNELS.helpJs, CHANNELS.helpThreadsReact]; +const threadChannels: string[] = []; addHandler(threadChannels, autothread); addHandler(CHANNELS.resumeReview, resumeReviewPdf);