Merge pull request #38 from multica-ai/fix/chat-assistant-message-width
fix(web): remove max-width constraint on assistant messages
This commit is contained in:
commit
83ab7ee743
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ export function Chat() {
|
|||
>
|
||||
<div
|
||||
className={cn(
|
||||
msg.role === "user" ? "bg-muted rounded-md max-w-[60%] p-1 px-2.5" : "w-full max-w-[90%] p-1 px-2.5"
|
||||
msg.role === "user" ? "bg-muted rounded-md max-w-[60%] p-1 px-2.5" : "w-full p-1 px-2.5"
|
||||
)}
|
||||
>
|
||||
<MemoizedMarkdown mode="minimal" id={msg.id}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue