diff --git a/plugins/github-pull-requests-board/src/utils/functions.ts b/plugins/github-pull-requests-board/src/utils/functions.ts index c68f24f116..777db81aff 100644 --- a/plugins/github-pull-requests-board/src/utils/functions.ts +++ b/plugins/github-pull-requests-board/src/utils/functions.ts @@ -139,7 +139,7 @@ export const shouldDisplayCard = ( // hide PRs from archived repositories unless "archivedRepo" filter is toggled if (infoCardFormat.includes('archivedRepo') !== repository.isArchived) { - return false + return false; } // when "team" filter is toggled on, only shows PR from team members diff --git a/plugins/github-pull-requests-board/src/utils/types.tsx b/plugins/github-pull-requests-board/src/utils/types.tsx index d9e15237e5..4c80052731 100644 --- a/plugins/github-pull-requests-board/src/utils/types.tsx +++ b/plugins/github-pull-requests-board/src/utils/types.tsx @@ -100,7 +100,12 @@ export type PullRequestsColumn = { content: PullRequests; }; -export type PRCardFormating = 'compacted' | 'fullscreen' | 'draft' | 'team' | 'archivedRepo'; +export type PRCardFormating = + | 'compacted' + | 'fullscreen' + | 'draft' + | 'team' + | 'archivedRepo'; export type ReviewDecision = 'IN_PROGRESS' | 'APPROVED' | 'REVIEW_REQUIRED';