Skip to content

Commit 99aa98d

Browse files
committed
FIX: Value
1 parent 0de0e81 commit 99aa98d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/OpenTDS/Foundation/Extensions/ViewExt.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import SwiftUI
33
public extension View {
44

55
@ViewBuilder func tossTabViewBottomPadding() -> some View {
6-
GeometryReader { proxy in
7-
self.padding(.bottom, proxy.safeAreaInsets.bottom <= 20 ? 43 : 56)
6+
GeometryReader { geometry in
7+
self.padding(.bottom, geometry.safeAreaInsets.bottom <= 20 ? 62 : 49)
88
}
99
}
1010

0 commit comments

Comments
 (0)