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

This commit is contained in:
Matt Bruce 2025-09-10 09:07:34 -05:00
parent 233dfc182a
commit 30cdf18342
2 changed files with 0 additions and 2 deletions

View File

@ -122,7 +122,6 @@ struct TimeDisplayView: View {
.minimumScaleFactor(0.1) .minimumScaleFactor(0.1)
.clipped() // Prevent overflow beyond bounds .clipped() // Prevent overflow beyond bounds
} }
.border(Color.blue, width: 1)
.frame(maxWidth: .infinity, maxHeight: .infinity) .frame(maxWidth: .infinity, maxHeight: .infinity)
.onOrientationChange() // Force updates on orientation changes .onOrientationChange() // Force updates on orientation changes
} }

View File

@ -33,7 +33,6 @@ struct TimeSegment: View {
digitWidth: singleDigitWidth, digitWidth: singleDigitWidth,
digitHeight: singleDigitHeight digitHeight: singleDigitHeight
) )
.border(Color.yellow, width: 1)
} }
} }
.frame(maxWidth: .infinity, maxHeight: .infinity) .frame(maxWidth: .infinity, maxHeight: .infinity)