Description
gatsby-plugin-create-client-paths is remounting the root component on every single page transition for the client-only path. This means that if you have auth check in your top-level root, your authentication check will run on each new page instead of just once like it would with a normal React SPA (e.g. one built with create-react-app)
Expected result
The root component should only mount once.
Actual result
The root (with routes) is remounted on every single transition.