You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In auth.ts, in the logout route, the line req.logout() fails to compile because logout() is not a property of Request.
This error happened in prod, but I can't reproduce it in dev.
I ended up temporarily fixing it by overriding that type to any: 0b24a00
but we should try to fix the root cause
Passport is supposed to override express.Request by adding on the additional logout property, but it seems like that isn't working
The text was updated successfully, but these errors were encountered:
In auth.ts, in the logout route, the line
req.logout()
fails to compile becauselogout()
is not a property ofRequest
.This error happened in prod, but I can't reproduce it in dev.
I ended up temporarily fixing it by overriding that type to
any
: 0b24a00but we should try to fix the root cause
Passport is supposed to override
express.Request
by adding on the additionallogout
property, but it seems like that isn't workingThe text was updated successfully, but these errors were encountered: