Skip to content

Commit ba1d2d8

Browse files
committed
fix: Fixing video not being mirrored in the 'Get Ready' screen
1 parent c24b7f0 commit ba1d2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/FaceLiveness/Views/GetReadyPage/ImageFrameView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct ImageFrameView: View {
1313
var body: some View {
1414
if let image = image {
1515
GeometryReader { geometry in
16-
Image(decorative: image, scale: 1.0, orientation: .upMirrored)
16+
Image(decorative: image, scale: 1.0, orientation: .up)
1717
.resizable()
1818
.scaledToFill()
1919
.frame(

0 commit comments

Comments
 (0)