We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fde3ca commit 50d724aCopy full SHA for 50d724a
src/bottomsheet/bottomsheet-common.ts
@@ -135,6 +135,7 @@ export abstract class ViewWithBottomSheetBase extends View {
135
this._bottomSheetContext.closeCallback = null;
136
}
137
const whenClosedCallback = () => {
138
+ this._bottomSheetClosed();
139
if (typeof options.closeCallback === 'function') {
140
options.closeCallback.apply(undefined, originalArgs);
141
src/bottomsheet/bottomsheet.ios.ts
@@ -465,7 +465,7 @@ export class ViewWithBottomSheet extends ViewWithBottomSheetBase {
465
466
467
_bottomSheetClosed() {
468
- // super already closed we are just a mixin
+ // super already called we are just a mixin
469
470
if (this.bottomSheetController) {
471
this.bottomSheetController.delegate = null;
0 commit comments