Skip to content

Commit 4787c37

Browse files
committed
fix: user message doesnt wrap
1 parent 60e2590 commit 4787c37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agent_chat_cli/components/messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class UserMessage(Widget):
5555

5656
def compose(self) -> ComposeResult:
5757
yield Label("[bold][#a3c1ad]You:[/][/bold]")
58-
yield Label(self.message)
58+
yield Markdown(self.message)
5959

6060

6161
class AgentMessage(Widget):

0 commit comments

Comments
 (0)