Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bprize15 committed Feb 18, 2025
1 parent 9dfc657 commit a1cda7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export const getCompactReviewInfo = <T extends BaseReviewLevel>(review: T): T =>
}
let childReview = review.children[0];
if (childReview?.nestedUnderCreateOrDelete) {
if (isCreateReview(review)) {
if (isCreateReview(review) || isDeleteReview(review)) {
return review;
}
}
Expand Down

0 comments on commit a1cda7f

Please sign in to comment.