latest batch of fixes after frontend testing - almost done?
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 16m29s

This commit is contained in:
2026-01-18 18:42:09 -08:00
parent 8e85493872
commit 7c0e5450db

View File

@@ -375,7 +375,7 @@ export const requireAuth = (req: Request, res: Response, next: NextFunction) =>
passport.authenticate(
'jwt',
{ session: false },
(err: Error | null, user: Express.User | false, info: { message: string } | Error) => {
(err: Error | null, user: UserProfile | false, info: { message: string } | Error) => {
if (err) {
// An actual error occurred during authentication
req.log.error({ error: err }, 'Authentication error');