diff --git a/frontend/src/components/chat/MessageBubble.tsx b/frontend/src/components/chat/MessageBubble.tsx index 4bf7c05..37fa3db 100644 --- a/frontend/src/components/chat/MessageBubble.tsx +++ b/frontend/src/components/chat/MessageBubble.tsx @@ -48,20 +48,20 @@ export function MessageBubble({ message }: MessageBubbleProps) { {(message.plots || message.plot_ids) && ((message.plots?.length || 0) > 0 || (message.plot_ids?.length || 0) > 0) && ( -
+
{message.plots?.map((plot, index) => { const src = `data:image/png;base64,${plot}` return (