fix(onboarding): restore chat bubble styling

This commit is contained in:
Peter Steinberger
2025-12-20 21:47:43 +00:00
parent 9ccf80848d
commit cd77dc9563
3 changed files with 13 additions and 4 deletions

View File

@@ -70,7 +70,7 @@ public struct ClawdisChatView: View {
ScrollView {
LazyVStack(spacing: Layout.messageSpacing) {
ForEach(self.visibleMessages) { msg in
ChatMessageBubble(message: msg)
ChatMessageBubble(message: msg, style: self.style)
.frame(
maxWidth: .infinity,
alignment: msg.role.lowercased() == "user" ? .trailing : .leading)