I'm trying to navigate to a different route if the back button is pressed to a component. ``` ts this.page.on('navigatingTo', (args: NavigatedData) => { if(args.isBackNavigation) { this.router.navigateByUrl('/', { clearHistory: true }); } }); ```