Skip to content

Commit

Permalink
fix: Fixing video not being mirrored in the 'Get Ready' screen
Browse files Browse the repository at this point in the history
  • Loading branch information
ruisebas committed Jul 2, 2024
1 parent c24b7f0 commit ba1d2d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct ImageFrameView: View {
var body: some View {
if let image = image {
GeometryReader { geometry in
Image(decorative: image, scale: 1.0, orientation: .upMirrored)
Image(decorative: image, scale: 1.0, orientation: .up)
.resizable()
.scaledToFill()
.frame(
Expand Down

0 comments on commit ba1d2d8

Please sign in to comment.