Skip to content

Commit abe149a

Browse files
committed
fix lint
1 parent ca4651f commit abe149a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/stores/chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function hasNonToolAssistantContent(message: RawMessage | undefined): boolean {
113113
}
114114
}
115115

116-
const msg = message as Record<string, unknown>;
116+
const msg = message as unknown as Record<string, unknown>;
117117
if (typeof msg.text === 'string' && msg.text.trim()) return true;
118118

119119
return false;

0 commit comments

Comments
 (0)