Email verification redirect crashes react application

We’ve specified a custom page that should be shown to a user after they verify their email:
{{ application.callback_domain }}/verified

This should redirect them to https://my-application.com/verified.
However, when it redirects, it seems to append a HEAP of query parameters, containing user friendly text (about being verified successfully) and whatnot. This crashes the auth0-spa-js library with an “Invalid State” error. Possibly because its trying to parse a huge query string.

Is there a way to stop all of the parameters being passed to the redirect url ? I just want it to go straight to /Verified without any extra stuff