Disabling swiping back while using MiniRouter?

Hi is there an option to prevent the user action of swiping back while using MiniRouter?

My Shop Mini is using MiniRouter and TransitionLink while having these screens:
Start Now Screen → Set of Questions for User to Answer → Loading Screen → Results Screen

While we like the screen transitions that these provide, we don’t really want to give the user to go back to the previous screen by swiping back in this flow. Thanks!

Hey! You can effectively disable back navigation by replacing each screen on the stack:

<Button onClick={() => navigate("/somewhere", { replace: true })}>
  Go Somewhere
</Button>
1 Like