From 816b7843997a711bc8c64ba37bab3ed556cb14cc Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 24 Dec 2025 14:10:32 +0100 Subject: [PATCH] ui: constrain typing indicator width --- .../ClawdisKit/Sources/ClawdisChatUI/ChatView.swift | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/shared/ClawdisKit/Sources/ClawdisChatUI/ChatView.swift b/apps/shared/ClawdisKit/Sources/ClawdisChatUI/ChatView.swift index 9a138e87a..4c6f95d5a 100644 --- a/apps/shared/ClawdisKit/Sources/ClawdisChatUI/ChatView.swift +++ b/apps/shared/ClawdisKit/Sources/ClawdisChatUI/ChatView.swift @@ -79,9 +79,11 @@ public struct ClawdisChatView: View { } if self.viewModel.pendingRunCount > 0 { - ChatTypingIndicatorBubble(style: self.style) - .equatable() - .frame(maxWidth: .infinity, alignment: .leading) + HStack { + ChatTypingIndicatorBubble(style: self.style) + .equatable() + Spacer(minLength: 0) + } } if !self.viewModel.pendingToolCalls.isEmpty {