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