diff --git a/src/sequentialthinking/index.ts b/src/sequentialthinking/index.ts index c66adacf..bd486fdb 100644 --- a/src/sequentialthinking/index.ts +++ b/src/sequentialthinking/index.ts @@ -25,7 +25,7 @@ interface ThoughtData { class SequentialThinkingServer { private thoughtHistory: ThoughtData[] = []; private branches: Record = {}; - private disableThoughtLogging: boolean; // <-- ADDED + private disableThoughtLogging: boolean; constructor() { this.disableThoughtLogging = (process.env.DISABLE_THOUGHT_LOGGING || "").toLowerCase() === "true";