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