My Ionic app was working fine and I haven\'t done anything to it but suddenly I am getting this error and I don\'t know why.
\"Error: Uncaught (in pro
For me, the simple fix was changing:
this.loader.dismiss()
to:
this.loader.dismiss().then(value => { console.log("dismiss worked!"); }, reason => { console.log("dismiss rejected!"); });