From 24002cb0347ff619f3434ed5ebdcb3b6cd61d68f Mon Sep 17 00:00:00 2001 From: michaelcanova Date: Wed, 2 Sep 2026 10:59:31 -0400 Subject: [PATCH] [Activity Feed] Adding peer review clickthrough for activity feed --- components/Activity/lib/activityWork.utils.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/Activity/lib/activityWork.utils.ts b/components/Activity/lib/activityWork.utils.ts index a70fe9752..c82e3fa80 100644 --- a/components/Activity/lib/activityWork.utils.ts +++ b/components/Activity/lib/activityWork.utils.ts @@ -90,6 +90,12 @@ function resolveWorkTab(entry: FeedEntry, workContentType?: ContentType): Activi case 'bounty_payout': return 'bounties'; case 'comment_published': + if ( + entry.content.contentType === 'COMMENT' && + entry.content.comment.commentType === 'REVIEW' + ) { + return 'reviews'; + } return shouldLinkToUpdatesTab(entry, workContentType) ? 'updates' : 'conversation'; default: return undefined;