refactor(acpx): drop unused codex trust wrapper

This commit is contained in:
Vincent Koc
2026-06-19 17:42:47 +08:00
parent c159063c70
commit 3091c13713

View File

@@ -297,8 +297,3 @@ export function renderIsolatedCodexConfig(params: {
.filter((line, index, lines) => !(line === "" && lines[index - 1] === ""))
.join("\n");
}
/** Render only the project trust section for a session-local Codex config. */
export function renderIsolatedCodexProjectTrustConfig(projectPaths: string[]): string {
return renderIsolatedCodexConfig({ projectPaths });
}