From 2f3b919b948b9f0cfce09717abf7545cce276e51 Mon Sep 17 00:00:00 2001 From: joshavant <830519+joshavant@users.noreply.github.com> Date: Tue, 24 Feb 2026 12:11:38 -0600 Subject: [PATCH] Config: remove unused extension path helper --- src/config/redact-snapshot.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/config/redact-snapshot.ts b/src/config/redact-snapshot.ts index 38559e764b8..b9ebeac84bf 100644 --- a/src/config/redact-snapshot.ts +++ b/src/config/redact-snapshot.ts @@ -42,14 +42,6 @@ function collectSensitiveStrings(value: unknown, values: string[]): void { } } -function isExtensionPath(path: string): boolean { - return ( - path === "plugins" || - path.startsWith("plugins.") || - path === "channels" || - path.startsWith("channels.") - ); -} function isExplicitlyNonSensitivePath(hints: ConfigUiHints | undefined, paths: string[]): boolean { if (!hints) { return false;