Skip to content

Commit 7cb6fcc

Browse files
committed
fix: prevent bottom sheet close from breaking modal stack
1 parent 3df77f6 commit 7cb6fcc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bottomsheet/bottomsheet-common.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ export abstract class ViewWithBottomSheetBase extends View {
8181
}
8282
const _rootModalViews = this._getRootModalViews();
8383
const modalIndex = _rootModalViews.indexOf(this);
84-
_rootModalViews.splice(modalIndex, 1);
84+
if (modalIndex !== -1) {
85+
_rootModalViews.splice(modalIndex, 1);
86+
}
8587

8688
this._isAddedToNativeVisualTree = false;
8789
this._tearDownUI(true);

0 commit comments

Comments
 (0)