style(cli): apply prettier formatting

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-05-06 00:42:33 +03:00
parent a597b42648
commit 8771e259a8
9 changed files with 40 additions and 27 deletions

View File

@@ -18,11 +18,7 @@ export async function dispatch(req: RequestFrame, ctx: CallerContext): Promise<R
// Agent + approval-gated → approval flow. Wired alongside the first
// approval-requiring command; until then, return a clear error.
if (ctx.caller !== 'host' && cmd.access === 'approval') {
return err(
req.id,
'approval-pending',
'This command requires approval. (Approval flow not yet wired.)',
);
return err(req.id, 'approval-pending', 'This command requires approval. (Approval flow not yet wired.)');
}
let parsed: unknown;