We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963337e commit 28061e3Copy full SHA for 28061e3
packages/core/ui/frame/index.ios.ts
@@ -54,7 +54,7 @@ export class Frame extends FrameBase {
54
public setCurrent(entry: BackstackEntry, navigationType: NavigationType): void {
55
const current = this._currentEntry;
56
const currentEntryChanged = current !== entry;
57
- if (currentEntryChanged) {
+ if (entry?.resolvedPage && currentEntryChanged) {
58
this._updateBackstack(entry, navigationType);
59
60
super.setCurrent(entry, navigationType);
0 commit comments