Skip to content

Commit 7eae4a4

Browse files
committed
yarn format
1 parent 03f5370 commit 7eae4a4

File tree

1 file changed

+1
-5
lines changed
  • lambdas/functions/control-plane/src/github

1 file changed

+1
-5
lines changed

lambdas/functions/control-plane/src/github/auth.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,7 @@ async function loadAppCredentials(): Promise<GitHubAppCredential[]> {
4949
throw new Error(`GitHub App parameter count mismatch: ${idParams.length} IDs vs ${keyParams.length} keys`);
5050
}
5151
// Batch fetch all SSM parameters in a single call to reduce API calls
52-
const allParamNames = [
53-
...idParams,
54-
...keyParams,
55-
...installationIdParams.filter((p) => p.length > 0),
56-
];
52+
const allParamNames = [...idParams, ...keyParams, ...installationIdParams.filter((p) => p.length > 0)];
5753
const params = await getParameters(allParamNames);
5854

5955
const credentials: GitHubAppCredential[] = [];

0 commit comments

Comments
 (0)