Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma11hewThomas committed Dec 17, 2024
1 parent a312727 commit d346b89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/github/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export async function handleViewsAndComments(
generateViews(inputs, report)

if (shouldAddCommentToPullRequest(inputs, report)) {
const INVISIBLE_MARKER = inputs.commentTag ?
`<!-- CTRF PR COMMENT TAG: ${inputs.commentTag} -->` :
`<!-- CTRF PR COMMENT TAG: DEFAULT -->`
const INVISIBLE_MARKER = inputs.commentTag
? `<!-- CTRF PR COMMENT TAG: ${inputs.commentTag} -->`
: `<!-- CTRF PR COMMENT TAG: DEFAULT -->`

await postOrUpdatePRComment(inputs, INVISIBLE_MARKER)
}
Expand Down

0 comments on commit d346b89

Please sign in to comment.