Skip to content

Commit 4b4f732

Browse files
committed
fx(ios): regression fix with AlertDialog
1 parent ad63290 commit 4b4f732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dialogs/dialogs.ios.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ export class AlertDialog {
290290
this.presentingController.dismissViewControllerAnimatedCompletion(true, () => {
291291
resolve?.();
292292
this.alertController.clear();
293+
this.presentingController = null;
294+
this.alertController = null;
293295
});
294-
this.presentingController = null;
295-
this.alertController = null;
296296
});
297297
}
298298
}

0 commit comments

Comments
 (0)