Skip to content

Commit b748f0b

Browse files
committed
feat: diagnostic settings working correctly - checkbox state persists, slider adjustments maintain checkbox state
- Fixed synchronization bugs between checkbox and slider - Settings now persist correctly across sessions - Removed debug logging from ClineProvider - Ready for UI improvements
1 parent f5db1a2 commit b748f0b

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,16 +1685,6 @@ export class ClineProvider
16851685
maxDiagnosticMessages: stateValues.maxDiagnosticMessages ?? DEFAULT_MAX_DIAGNOSTIC_MESSAGES,
16861686
}
16871687

1688-
// Log diagnostic settings retrieval
1689-
DiagnosticDebugLogger.getInstance().log("ClineProvider.getState", "Retrieved diagnostic settings from state", {
1690-
includeDiagnosticMessages: stateValues.includeDiagnosticMessages,
1691-
maxDiagnosticMessages: stateValues.maxDiagnosticMessages,
1692-
defaultsApplied: {
1693-
includeDiagnosticMessages: stateValues.includeDiagnosticMessages === undefined,
1694-
maxDiagnosticMessages: stateValues.maxDiagnosticMessages === undefined,
1695-
},
1696-
})
1697-
16981688
// Return the same structure as before
16991689
return {
17001690
apiConfiguration: providerSettings,

0 commit comments

Comments
 (0)