Skip to content

Commit 949601c

Browse files
committed
lint
1 parent ca361a3 commit 949601c

File tree

1 file changed

+4
-1
lines changed
  • apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content

1 file changed

+4
-1
lines changed

apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content/chat-content.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,10 @@ export function ChatContent({
242242
const hasSpecialContent = parsed.hasPendingTag || parsed.segments.some((s) => s.type !== 'text')
243243

244244
if (hasSpecialContent) {
245-
type BlockSegment = Exclude<ContentSegment, { type: 'text' } | { type: 'thinking' } | { type: 'workspace_resource' }>
245+
type BlockSegment = Exclude<
246+
ContentSegment,
247+
{ type: 'text' } | { type: 'thinking' } | { type: 'workspace_resource' }
248+
>
246249
type RenderGroup =
247250
| { kind: 'inline'; markdown: string }
248251
| { kind: 'block'; segment: BlockSegment; index: number }

0 commit comments

Comments
 (0)