Skip to content

Commit

Permalink
Fix ScrollView extension to pass github action error
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Solovev committed Mar 15, 2024
1 parent cbae16a commit 6d54e45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ extension UIScrollView {

let bottomScrollIndicatorInset: CGFloat
if #available(iOS 11.0, *) {
bottomScrollIndicatorInset = keyboardFrame.height - safeAreaInsets.bottom
bottomScrollIndicatorInset = keyboardFrame.height - self.safeAreaInsets.bottom
} else {
bottomScrollIndicatorInset = keyboardFrame.height
}
Expand Down

0 comments on commit 6d54e45

Please sign in to comment.