diff --git a/Baccarat/Baccarat/Views/Game/GameTableView.swift b/Baccarat/Baccarat/Views/Game/GameTableView.swift index 08d40eb..6ce3b1e 100644 --- a/Baccarat/Baccarat/Views/Game/GameTableView.swift +++ b/Baccarat/Baccarat/Views/Game/GameTableView.swift @@ -273,10 +273,7 @@ struct GameTableView: View { onStats: { showStats = true } ) .debugBorder(showDebugBorders, color: .cyan, label: "TopBar") - - Spacer(minLength: minSpacerHeight) - .debugBorder(showDebugBorders, color: .yellow, label: "Spacer1") - + // Cards display area CardsDisplayArea( playerCards: state.visiblePlayerCards, @@ -330,9 +327,6 @@ struct GameTableView: View { .debugBorder(showDebugBorders, color: .purple, label: "Hint") } - Spacer(minLength: mediumSpacerHeight) - .debugBorder(showDebugBorders, color: .yellow, label: "Spacer4") - // Chip selector - full width so all chips are tappable ChipSelectorView( selectedChip: $selectedChip, @@ -341,10 +335,7 @@ struct GameTableView: View { maxBet: state.maxBet ) .debugBorder(showDebugBorders, color: .pink, label: "ChipSelector") - - Spacer(minLength: smallSpacerHeight) - .debugBorder(showDebugBorders, color: .yellow, label: "Spacer5") - + // Action buttons ActionButtonsView( gameState: state,