From 9fee5c4ff974f8a477e574179695221d31e1646d Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sun, 28 Dec 2025 17:40:03 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- Baccarat/Baccarat/Views/Game/GameTableView.swift | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) 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,