style: apply prettier formatting to modified files

https://claude.ai/code/session_01JPjzhBp9PR5LtfLWVDrYrH
This commit is contained in:
Claude
2026-03-20 18:38:25 +00:00
committed by gavrielc
parent 30ebcaa61e
commit b30b5a6a8f
2 changed files with 4 additions and 6 deletions

View File

@@ -507,11 +507,7 @@ export async function runContainerAgent(
// Full input is only included at verbose level to avoid
// persisting user conversation content on every non-zero exit.
if (isVerbose) {
logLines.push(
`=== Input ===`,
JSON.stringify(input, null, 2),
``,
);
logLines.push(`=== Input ===`, JSON.stringify(input, null, 2), ``);
} else {
logLines.push(
`=== Input Summary ===`,

View File

@@ -96,7 +96,9 @@ export function ensureContainerRuntimeRunning(): void {
console.error(
'╚════════════════════════════════════════════════════════════════╝\n',
);
throw new Error('Container runtime is required but failed to start', { cause: err });
throw new Error('Container runtime is required but failed to start', {
cause: err,
});
}
}