diff --git a/apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content/chat-content.tsx b/apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content/chat-content.tsx
index 3fe7dcd02e..218b34db84 100644
--- a/apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content/chat-content.tsx
+++ b/apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content/chat-content.tsx
@@ -207,7 +207,12 @@ export function ChatContent({ content, isStreaming = false, onOptionSelect }: Ch
return (
:first-child]:mt-0 [&>:last-child]:mb-0')}>
-
+
{rendered}
diff --git a/apps/sim/lib/copilot/request/go/stream.ts b/apps/sim/lib/copilot/request/go/stream.ts
index f8a407d3f2..b0eb7284ef 100644
--- a/apps/sim/lib/copilot/request/go/stream.ts
+++ b/apps/sim/lib/copilot/request/go/stream.ts
@@ -277,14 +277,6 @@ export async function runStreamLoop(
return
}
- if (
- streamEvent.type === MothershipStreamV1EventType.text &&
- typeof streamEvent.payload.text === 'string'
- ) {
- await options.onEvent?.(streamEvent)
- return
- }
-
if (
streamEvent.type === MothershipStreamV1EventType.tool &&
streamEvent.payload.phase === 'args_delta' &&