Hi team! I could resolved the thing about the logi...
# general
w
Hi team! I could resolved the thing about the login/register with Oauth2 in React-Native 👍 but the last thing I should figure out there is the logout.. I am using
"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=>
Copy code
const logOutConfig = {
        issuer,
        clientId,
      };
 console.log('idToken', !!idToken);
 if (!idToken) return;
 const result = await logout(logOutConfig, {
        idToken,
        postLogoutRedirectUrl,
      });