From a326bab5056f5bc85c0df19836396d19f1e3075b Mon Sep 17 00:00:00 2001 From: Aidan Daly Date: Wed, 25 Feb 2026 14:17:10 -0500 Subject: [PATCH] fix: prettier formatting for gateway-status.ts --- src/cli/operations/deploy/gateway-status.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cli/operations/deploy/gateway-status.ts b/src/cli/operations/deploy/gateway-status.ts index de20b1e4..815f1115 100644 --- a/src/cli/operations/deploy/gateway-status.ts +++ b/src/cli/operations/deploy/gateway-status.ts @@ -30,7 +30,9 @@ export function formatTargetStatus(status: string): string { export async function getGatewayTargetStatuses(gatewayId: string, region: string): Promise { try { const client = new BedrockAgentCoreControlClient({ region }); - const response = await client.send(new ListGatewayTargetsCommand({ gatewayIdentifier: gatewayId, maxResults: 100 })); + const response = await client.send( + new ListGatewayTargetsCommand({ gatewayIdentifier: gatewayId, maxResults: 100 }) + ); return (response.items ?? []).map(target => ({ name: target.name ?? 'unknown',