Deeplink throw error "No scene reference found for activity 1" by scene has priorScene

Hi, in our project we have scenes like this:

But with this setup, whenever we refresh page, deeplink will throw error: “No scene reference found for activity 1” and run handleLoadWelcomePage() - deepLinkingSaga.ts after that.

It looks like deeplink doesn’t work with a scene/activity have priorScene or we are missing some configuration at appmodel?

Note that: Our project already implemented middleware to handle create missing scene/activity when deeplink just create latest activity (like middleware will automated create ActivityA and ActivityB when deeplink push ActivityC)
So the deeplink’s error prevents this middleware and it makes screen is blank.

Hi @anh-round-summit,

In the Client documentation mentioned under the DeepLinking/Limitations:
Deep links currently do not work when used in combination with the priorScene property of Scenes

Thank you Ahmah, I will find another solution.