story-kit: merge 195_story_preserve_newlines_in_chat_message_submission

This commit is contained in:
Dave
2026-02-25 18:16:46 +00:00
parent 4e0b6b143b
commit 9f469068fc
2 changed files with 20 additions and 1 deletions

View File

@@ -53,7 +53,8 @@ function MessageItemInner({ msg }: MessageItemProps) {
fontFamily: msg.role === "tool" ? "monospace" : "inherit",
fontSize: msg.role === "tool" ? "0.85em" : "1em",
fontWeight: "500",
whiteSpace: msg.role === "tool" ? "pre-wrap" : "normal",
whiteSpace:
msg.role === "tool" || msg.role === "user" ? "pre-wrap" : "normal",
lineHeight: "1.6",
}}
>