Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
skwowet committed Jul 31, 2024
1 parent b8adfcc commit 6e6fa8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/services/MergeActionsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class MergeActionsService extends LoggerBase {

const results = await MergeActionsRepository.query(args, this.options)

return results.map(result => ({
return results.map((result) => ({
primaryId: result.primaryId,
secondaryId: result.secondaryId,
state: result.state,
Expand All @@ -31,7 +31,7 @@ export default class MergeActionsService extends LoggerBase {
static getOperationType(step) {
if (step.startsWith('merge')) {
return 'merge'
}
}

return 'unmerge'
}
Expand Down

0 comments on commit 6e6fa8d

Please sign in to comment.