hey
@Axel if you are using cookie based auth, then you can't really remove the tokens from the frontend cause the JS can't access it.
What you can do is to set a flag on the frontend indicating that the user should logout, and override the doesSessionExist function on the frontend to call the originalImplementation, and if that returns
true
, check if this custom flag exists, and if it does, return
false
from the function.