From 7417241fcc044abc008132be779ff9cf5a074b06 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Fri, 21 May 2021 14:52:20 +0200 Subject: [PATCH] fix format Signed-off-by: Johan Haals --- packages/integration/src/github/GithubCredentialsProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/integration/src/github/GithubCredentialsProvider.ts b/packages/integration/src/github/GithubCredentialsProvider.ts index 24f0b13a33..9bc09deab3 100644 --- a/packages/integration/src/github/GithubCredentialsProvider.ts +++ b/packages/integration/src/github/GithubCredentialsProvider.ts @@ -229,7 +229,7 @@ export class GithubCredentialsProvider { const owner = parsed.owner || parsed.name; const repo = parsed.owner ? parsed.name : undefined; - let type: GithubCredentialType = 'app'; + let type: GithubCredentialType = 'app'; let token = await this.githubAppCredentialsMux.getAppToken(owner, repo); if (!token) { type = 'token';