I spotted some kind of bug on the frontend that le...
# support-questions-legacy
n
I spotted some kind of bug on the frontend that leaves the application in an unusable state
/api/auth/user/email/verify
raises the error
Error: Unknown User ID provided
(and makes the app unusable). Full Stack:
Copy code
Error: Unknown User ID provided
    at Recipe.<anonymous> (/app/node_modules/supertokens-node/lib/build/recipe/thirdpartyemailpassword/recipe.js:129:27)
    at Generator.next (<anonymous>)
    at fulfilled (/app/node_modules/supertokens-node/lib/build/recipe/thirdpartyemailpassword/recipe.js:15:36)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
I think this is related due to an account that was deleted but the
sAccessToken
,
sFrontToken
,
sIRTFrontend
and
sIdRefreshToken
cookies still be present on the frontend 🤔 After deleting the cookies from the dev tools everything works fine! Shouldn't the
supertokens-auth-react
library handle this and auto logout the user/unset the cookies? is this related to https://github.com/supertokens/supertokens-auth-react/issues/547 ? Happy to open a new issue otherwise!