feat(web): improve comment panel and trigger UI

This commit is contained in:
CREDO23 2026-01-19 14:37:38 +02:00
parent d99722cfdc
commit f008acecfc
8 changed files with 56 additions and 24 deletions

View file

@ -18,7 +18,7 @@ import { transformComment, transformMember } from "./utils";
export function CommentPanelContainer({
messageId,
isOpen,
maxHeight = 400,
maxHeight,
}: CommentPanelContainerProps) {
const { data: commentsData, isLoading: isCommentsLoading } = useComments({
messageId,
@ -70,7 +70,6 @@ export function CommentPanelContainer({
return (
<CommentPanel
messageId={messageId}
threads={commentThreads}
members={members}
membersLoading={isMembersLoading}
@ -84,4 +83,3 @@ export function CommentPanelContainer({
/>
);
}