From 883e2810b9464ead19fef3f378b5025ea6adfdbd Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 21:16:08 +0000 Subject: [PATCH] perf: replace FlexFrame pair in QueuedMessagesDrawer with widthCap (LUM-1011) Co-Authored-By: ashlee@vellum.ai --- .../vellum-assistant/Features/Chat/QueuedMessagesDrawer.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/macos/vellum-assistant/Features/Chat/QueuedMessagesDrawer.swift b/clients/macos/vellum-assistant/Features/Chat/QueuedMessagesDrawer.swift index 0b9aa75ea7f..14a3d79854d 100644 --- a/clients/macos/vellum-assistant/Features/Chat/QueuedMessagesDrawer.swift +++ b/clients/macos/vellum-assistant/Features/Chat/QueuedMessagesDrawer.swift @@ -43,8 +43,7 @@ struct QueuedMessagesDrawer: View { .strokeBorder(VColor.borderBase, lineWidth: 1) ) .fixedSize(horizontal: false, vertical: true) - .frame(maxWidth: VSpacing.chatColumnMaxWidth) - .frame(maxWidth: .infinity, alignment: .center) + .widthCap(VSpacing.chatColumnMaxWidth) } private func header(queuedMessages: [ChatMessage]) -> some View {