Skip to content

Commit a6ac50d

Browse files
committed
fix: prettier formatting for gateway-status.ts (#449)
1 parent 0890e0a commit a6ac50d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/cli/operations/deploy/gateway-status.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export function formatTargetStatus(status: string): string {
3030
export async function getGatewayTargetStatuses(gatewayId: string, region: string): Promise<TargetSyncStatus[]> {
3131
try {
3232
const client = new BedrockAgentCoreControlClient({ region });
33-
const response = await client.send(new ListGatewayTargetsCommand({ gatewayIdentifier: gatewayId, maxResults: 100 }));
33+
const response = await client.send(
34+
new ListGatewayTargetsCommand({ gatewayIdentifier: gatewayId, maxResults: 100 })
35+
);
3436

3537
return (response.items ?? []).map(target => ({
3638
name: target.name ?? 'unknown',

0 commit comments

Comments
 (0)