Sorry! I’m talking about the issue of NavParams being undefined if you hit the browser refresh button on any page (in the situation where you have pushed that page onto the nav stack passing parameters). The conference app uses this list of links in app.module:
links: [
{ component: SpeakerDetailPage, name: 'SpeakerDetail', segment: 'speakerDetail/:speakerId' },
]
I’m assuming that’s the way to handle this issue (although I think objects aren’t supported so for example the speakerDetail component is passed a speakerId which is a string - it couldn’t be an object)