Federated logout logs me out of my different apps

After I login with socials (google) and I use this logout functionality with federated:“”, I got logout not only from my app using this but also from my google account in my browser which is super weird behavior. I want to fully logout but only from the app I’m using.

export default handleAuth({
  logout: handleLogout({
    logoutParams: {
      federated: '',
    },
    returnTo: '/',
  }),
});

Refreshing, some ideas?

Hey there @xrevix00 this is expected behavior as you are logging the user out of the Identity Provider (Google) itself - In general, logging the user out of their social identities might want to be avoided for this very reason. Some more on federated logout here:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.