after close Interstitial ad then angular not able to detect changes on next page in capacitor/ionic

Homepage.ts //all imports async ionViewWillEnter() { this.init(); // this.zone.run(async () => { this.InterDish = await AdMob.addListener(InterstitialAdPluginEvents.Dismissed, () => { console.log("Interstitial Dismissed"); this.nextpage(); }); this.InterLoadFailh = await AdMob.addListener(InterstitialAdPluginEvents.FailedToShow, () => { console.log("Iterstitial FailedToShow"); this.nextpage(); }); // }); } ionViewWillLeave() { this.InterDish.remove(); this.InterLoadFailh.remove(); } nextpage.html <ion-segment [(ngModel)]="Design" (ionChange)="segmentChanged($event)"> <ion-segment-button value="new"> new </ion-segment-button> <ion-segment-button value="old"> old </ion-segment-button> <ion-segment-button… Read More after close Interstitial ad then angular not able to detect changes on next page in capacitor/ionic