diff --git a/web/app/components/workflow/comment/thread.tsx b/web/app/components/workflow/comment/thread.tsx index 1212abb7c1..770be0b681 100644 --- a/web/app/components/workflow/comment/thread.tsx +++ b/web/app/components/workflow/comment/thread.tsx @@ -297,7 +297,7 @@ export const CommentThread: FC = memo(({
= memo(({ /> {replies.length > 0 && (
- {replies.map((reply) => { + {replies.map((reply, index) => { const isReplyEditing = editingReply?.id === reply.id const isOwnReply = reply.created_by_account?.id === userProfile?.id + const isLastReply = index === replies.length - 1 return (
= memo(({ {activeReplyMenuId === reply.id && ( -
+