We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98ca8a7 commit cf53658Copy full SHA for cf53658
packages/project-editor/ui-components/Output.tsx
@@ -204,7 +204,8 @@ const MessageContent = observer(
204
let text =
205
typeof this.props.message.text == "string"
206
? this.props.message.text
207
- : this.props.message.text?.toString() ?? "";
+ : (this.props.message.text as any)?.toString() ?? "";
208
+
209
if (text.length > MAX_OUTPUT_MESSAGE_TEXT_SIZE) {
210
text = text.substring(0, MAX_OUTPUT_MESSAGE_TEXT_SIZE) + "...";
211
}
0 commit comments