Skip to content

Commit 035c513

Browse files
committed
formatting
1 parent 62c80ee commit 035c513

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

backend/src/serverless/integrations/services/integrations/githubIntegrationService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ export class GithubIntegrationService extends IntegrationServiceBase {
230230
}
231231

232232
const nextPageStream = result.hasPreviousPage
233-
? { value: stream.value, metadata: { repo:stream.metadata.repo, page: result.startCursor } }
234-
: undefined
233+
? { value: stream.value, metadata: { repo: stream.metadata.repo, page: result.startCursor } }
234+
: undefined
235235

236236
const activities = await GithubIntegrationService.parseActivities(result.data, stream, context)
237237

@@ -243,7 +243,7 @@ export class GithubIntegrationService extends IntegrationServiceBase {
243243
},
244244
],
245245
newStreams,
246-
nextPageStream
246+
nextPageStream,
247247
}
248248
}
249249

backend/src/serverless/integrations/usecases/github/graphql/organizations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const getOrganization = async (name: string, token: string): Promise<any> => {
1616
},
1717
})
1818

19-
const sanitizedName = name.replaceAll('\\','')
19+
const sanitizedName = name.replaceAll('\\', '')
2020

2121
const organizationsQuery = `{
2222
search(query: "type:org ${sanitizedName}", type: USER, first: 10) {

0 commit comments

Comments
 (0)