From 9ad348daa1abd62f91c109b8ae9a3abca315aab7 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 23 Dec 2025 08:51:59 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- Baccarat/Baccarat/Views/Game/GameTableView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Baccarat/Baccarat/Views/Game/GameTableView.swift b/Baccarat/Baccarat/Views/Game/GameTableView.swift index 5a17d41..b27b353 100644 --- a/Baccarat/Baccarat/Views/Game/GameTableView.swift +++ b/Baccarat/Baccarat/Views/Game/GameTableView.swift @@ -145,7 +145,7 @@ struct GameTableView: View { // Main content area with optional sidebar HStack(spacing: 0) { // Left side: Road map history grid - if settings.showHistory && !state.roundHistory.isEmpty { + if settings.showHistory { VStack(alignment: .leading, spacing: Design.Spacing.xSmall) { // Header with reading instructions VStack(alignment: .leading, spacing: 5) { @@ -286,7 +286,7 @@ struct GameTableView: View { .debugBorder(showDebugBorders, color: .yellow, label: "Spacer2") // Road map history - if settings.showHistory && !state.roundHistory.isEmpty { + if settings.showHistory { RoadMapView(results: state.recentResults) .frame(maxWidth: isLargeScreen ? maxContentWidth : .infinity) .padding(.horizontal, Design.Spacing.medium)