Currently when a user submits a form it shows and thank you overlay - after 2.5 seconds I want the overlay to disappear.
My currently code looks like this.
ionViewWillEnter()
{
setTimeout(() => {
this.navCtrl.popToRoot();
}, 2500);
}
But the page just stays on forever and never pops back to the root page