I want to ask a question about an issue I'm facing with the superToken function in my code.
I'm using a supertokens function called Session.doesSessionExist() to protect my frontend routes. Initially, this function returns false. However, after a user logs in, it returns true.
The problem arises after a user signs out using the following code:
import Session from "supertokens-web-js/recipe/session";
await Session.signOut();
Even after signing out, the doesSessionExist function continues to return true. How can I resolve this issue?