When I invoke the signOut() method, I expect the access token used for that supabase client session to stop working.
To test it, I just set it up so when the user clicks logout it invokes an endpoint that calls the supabase signOut method.
I don't delete the cookie or anything, and if I refresh the page the access_token still successfully queries the database.
I know I can just delete the access_token cookie and they'll be logged out on that device, but I want signOut to stop the access token from working.
Eg what if someone's account is compromised and they signout, it won't stop the other session from still performing malicious actions