From 31b6034b5f0c2f1aac970843de57e105e3c2654f Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sat, 24 Jan 2026 20:43:53 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- Baccarat/Baccarat/Views/Table/CompactHandView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Baccarat/Baccarat/Views/Table/CompactHandView.swift b/Baccarat/Baccarat/Views/Table/CompactHandView.swift index cf55e2a..5751fb3 100644 --- a/Baccarat/Baccarat/Views/Table/CompactHandView.swift +++ b/Baccarat/Baccarat/Views/Table/CompactHandView.swift @@ -92,13 +92,13 @@ struct CompactHandView: View { GeometryReader { geometry in let availableWidth = geometry.size.width - if isLargeScreen { - // iPad: Simple centered layout - no scrolling needed + if isLargeScreen || !isDealing { + // iPad or betting phase: Simple centered layout - no scrolling needed cardsContent .padding(.horizontal, Design.Spacing.medium) .frame(width: availableWidth, alignment: .center) } else { - // iPhone: Use ScrollView for 3rd card + // iPhone dealing phase: Use ScrollView for 3rd card ScrollViewReader { proxy in ScrollView(.horizontal, showsIndicators: false) { cardsContent