diff --git a/src/components/comment/CommentsPopup.tsx b/src/components/comment/CommentsPopup.tsx index f155146..5aa56a8 100644 --- a/src/components/comment/CommentsPopup.tsx +++ b/src/components/comment/CommentsPopup.tsx @@ -532,9 +532,12 @@ export const CommentsPopup = ({ title }: CommentsPopupProps) => { comment={{ event: reply }} /> )) - : commentEvents.map((reply) => ( - - ))} + : commentEvents + // Filter out events with 'q' tag since we are showing them with a dropdown + .filter((r) => r.event.tagValue('q') !== event.id) + .map((reply) => ( + + ))} )}