Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2025-12-23 08:51:59 -06:00
parent 9a22d133d5
commit 9ad348daa1

View File

@ -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)