Skip to content

Commit 076b5a5

Browse files
committed
chore: fix code style
1 parent c10edb6 commit 076b5a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

codex-cli/src/utils/config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ export const saveConfig = (
458458
}
459459

460460
if (config.instructions.includes(PROJECT_DOC_SEPARATOR)) {
461-
const userInstructions = config.instructions.split(PROJECT_DOC_SEPARATOR)[0];
461+
const userInstructions = config.instructions.split(
462+
PROJECT_DOC_SEPARATOR,
463+
)[0];
462464
if (userInstructions !== undefined) {
463465
writeFileSync(instructionsPath, userInstructions, "utf-8");
464466
}

0 commit comments

Comments
 (0)