wonderful-journalist-69737
08/04/2023, 1:48 PM"react-native-app-auth"
and when I try to log out, I am being redirected to the /ui/welcome
screen instead of having the logout flow and being redirected again to my app.
Is there any extra configuration I should add to my Ory console? Should I add something related to this ?
I am trying this=>
const logOutConfig = {
issuer,
clientId,
};
console.log('idToken', !!idToken);
if (!idToken) return;
const result = await logout(logOutConfig, {
idToken,
postLogoutRedirectUrl,
});