Skip to content

Commit 185631e

Browse files
committed
fix(ios): fix crash(hanging) with N 8.2
1 parent ba53705 commit 185631e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bottomsheet/bottomsheet.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function layoutView(controller: IMDLayoutViewController, owner: View): void {
113113
const heightSpec = Utils.layout.makeMeasureSpec(safeAreaHeight, Utils.layout.UNSPECIFIED);
114114

115115
// reset _cachedFrame or it will wrongly move the view on subsequent layouts
116-
(owner as any)._cachedFrame = null;
116+
// (owner as any)._cachedFrame = null;
117117
View.measureChild(null, owner, widthSpec, heightSpec);
118118
const marginTop = owner.effectiveMarginTop;
119119
const marginBottom = owner.effectiveMarginBottom;

0 commit comments

Comments
 (0)