Prettier write

Signed-off-by: tylerhekman-procore <tyler.hekman@procore.com>
This commit is contained in:
tylerhekman-procore
2023-04-07 00:28:28 -07:00
parent fcfbcb412e
commit f796f0e0a0
2 changed files with 7 additions and 2 deletions
@@ -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
@@ -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';