We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3df77f6 commit 7cb6fccCopy full SHA for 7cb6fcc
src/bottomsheet/bottomsheet-common.ts
@@ -81,7 +81,9 @@ export abstract class ViewWithBottomSheetBase extends View {
81
}
82
const _rootModalViews = this._getRootModalViews();
83
const modalIndex = _rootModalViews.indexOf(this);
84
- _rootModalViews.splice(modalIndex, 1);
+ if (modalIndex !== -1) {
85
+ _rootModalViews.splice(modalIndex, 1);
86
+ }
87
88
this._isAddedToNativeVisualTree = false;
89
this._tearDownUI(true);
0 commit comments