diff --git a/services/web/frontend/js/features/review-panel-new/components/review-panel-comment.tsx b/services/web/frontend/js/features/review-panel-new/components/review-panel-comment.tsx index 316abd25b5..1483999c79 100644 --- a/services/web/frontend/js/features/review-panel-new/components/review-panel-comment.tsx +++ b/services/web/frontend/js/features/review-panel-new/components/review-panel-comment.tsx @@ -13,7 +13,7 @@ export const ReviewPanelComment = memo<{ const threads = useThreadsContext() const thread = threads?.[comment.op.t] - if (!thread || thread.resolved) { + if (!thread || thread.resolved || thread.messages.length === 0) { return null }