diff --git a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt index 50353fcfb6..079bac3a4f 100644 --- a/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt +++ b/modules/bottom-sheet/android/src/main/java/expo/modules/bottomsheet/BottomSheetView.kt @@ -164,10 +164,6 @@ class BottomSheetView( when { // Full height sheets contentHeight >= screenHeight -> 0.99f - // Medium height sheets (>50% but <100%) - contentHeight >= screenHeight / 2 -> - this.clampRatio(this.getTargetHeight() / screenHeight) - // Small height sheets (<50%) else -> this.clampRatio(this.getTargetHeight() / screenHeight) }