diff --git a/src/components/nav/nav-pop.ts b/src/components/nav/nav-pop.ts index a06a479d33b..3aa5ef7e22d 100644 --- a/src/components/nav/nav-pop.ts +++ b/src/components/nav/nav-pop.ts @@ -43,7 +43,9 @@ export class NavPop { onClick(): boolean { // If no target, or if target is _self, prevent default browser behavior if (this._nav) { - this._nav.pop(null, null); + this._nav.pop().catch(() => { + console.debug('navPop was rejected'); + }); return false; }