We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959374c commit 083fc72Copy full SHA for 083fc72
1 file changed
apps/sim/lib/core/utils/formatting.ts
@@ -191,7 +191,6 @@ export function safelyRenderValue(value: unknown): string {
191
}
192
193
if (typeof value === 'object') {
194
- // Handle common structured output pattern {text: string, type?: string}
195
if ('text' in value && typeof (value as Record<string, unknown>).text === 'string') {
196
return (value as Record<string, unknown>).text as string
197
0 commit comments