Skip to content

Commit cf53658

Browse files
committed
fixed build error
1 parent 98ca8a7 commit cf53658

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/project-editor/ui-components/Output.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ const MessageContent = observer(
204204
let text =
205205
typeof this.props.message.text == "string"
206206
? this.props.message.text
207-
: this.props.message.text?.toString() ?? "";
207+
: (this.props.message.text as any)?.toString() ?? "";
208+
208209
if (text.length > MAX_OUTPUT_MESSAGE_TEXT_SIZE) {
209210
text = text.substring(0, MAX_OUTPUT_MESSAGE_TEXT_SIZE) + "...";
210211
}

0 commit comments

Comments
 (0)