We currently error out if: `dynamicLoginMethods` is enabled but `getTenantId` returns an unknown id. We should: - Show a sensible error in the console - Show the access denied screen with a specific message like we do [here](https://github.com/AmanAgarwal041/supertokens-auth-react/blob/bfe9f61d956c070ca603b88db241069c50af1477/lib/ts/recipe/multifactorauth/components/themes/factorChooser/index.tsx#L29) Reproduction: - start & open default test app - run in browser console: ```js localStorage.setItem("usesDynamicLoginMethods", "true"); localStorage.setItem("mockTenantId", "asdf"); ``` - open/refresh auth screen