I follow the docs for authenticating users in Firebase with Google. I implemented it and it works fine. It is also said that if I need to sign-out, I need to use:
Firebase.auth.signOut()
Does this line also sign out from Google? When I last used such an authentication, I had to use:
googleSignInClient.signOut()
Is this not needed anymore?