(feat:attach)state manage, follow camelCase

This commit is contained in:
ManishMadan2882
2025-06-06 18:54:50 +05:30
parent 3bae30c70c
commit 430822bae3
4 changed files with 18 additions and 6 deletions

View File

@@ -59,7 +59,7 @@ const ConversationBubble = forwardRef<
updated?: boolean,
index?: number,
) => void;
attachmentsMetadata?: { id: string; filename: string }[];
attachmentsMetadata?: { id: string; fileName: string }[];
}
>(function ConversationBubble(
{
@@ -124,7 +124,7 @@ const ConversationBubble = forwardRef<
/>
</div>
<span className="max-w-[150px] truncate font-normal">
{attachment.filename}
{attachment.fileName}
</span>
</div>
))}