diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx
index 19019613..aa9514cc 100644
--- a/frontend/src/conversation/ConversationBubble.tsx
+++ b/frontend/src/conversation/ConversationBubble.tsx
@@ -74,10 +74,10 @@ const ConversationBubble = forwardRef<
{type === 'ERROR' && (
@@ -115,18 +115,14 @@ const ConversationBubble = forwardRef<
{message}
{DisableSourceFE || type === 'ERROR' ? null : (
-
- )}
-
- {DisableSourceFE || type === 'ERROR' ? null : (
-
- Sources:
-
- )}
-
- {DisableSourceFE
- ? null
- : sources?.map((source, index) => (
+ <>
+
+
+
+ Sources:
+
+
+ {sources?.map((source, index) => (
))}
-
-
+
+
+ >
+ )}