diff --git a/web/app/components/workflow/comment/thread.tsx b/web/app/components/workflow/comment/thread.tsx index 4fae9cd887..ecfa5c2add 100644 --- a/web/app/components/workflow/comment/thread.tsx +++ b/web/app/components/workflow/comment/thread.tsx @@ -37,7 +37,8 @@ const ThreadMessage: FC<{ createdAt: number content: string mentionedNames?: string[] -}> = ({ authorId, authorName, avatarUrl, createdAt, content, mentionedNames }) => { + className?: string +}> = ({ authorId, authorName, avatarUrl, createdAt, content, mentionedNames, className }) => { const { formatTimeFromNow } = useFormatTimeFromNow() const { userProfile } = useAppContext() const currentUserId = userProfile?.id @@ -108,7 +109,7 @@ const ThreadMessage: FC<{ }, [content, mentionedNames]) return ( -