bland-kitchen-870
02/13/2025, 9:02 AM<http://localhost:9080/kratos/self-service/>
). When I try to resend a verification code, everything works as expected. However, if the verification flow has timed out, the updateVerificationFlow
function redirects to:
<https://localhost:4433/self-service/verification/flows?id=24ae8c74-c29e-480a-93f2-4444ed3be292>
I'm not sure why it's redirecting to localhost:4433
instead of my expected URL. How can I override this behavior in the configuration?
My client SDK configuration
const ory = new FrontendApi(
new Configuration({
basePath: "<http://localhost:9080/kratos>",
baseOptions: {
withCredentials: true,
},
})
);
Thanks in advance!