Skip to content

Commit cb12448

Browse files
committed
fix typescript compile error
1 parent 45f2a60 commit cb12448

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

tools/server/public/index.html.gz

105 Bytes
Binary file not shown.

tools/server/webui/src/components/ChatMessage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default function ChatMessage({
6363
}
6464

6565
// Handle case where we have reasoningContent (content can be null or empty)
66-
if (msg.reasoningContent.length > 0) {
66+
if (msg.reasoningContent !== null) {
6767
return {
6868
content: msg.content || '',
6969
thought: msg.reasoningContent,

0 commit comments

Comments
 (0)