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;