From 2518ced0fab78945fe29a4a136551b046f203e51 Mon Sep 17 00:00:00 2001 From: devthejo Date: Mon, 30 Jun 2025 13:50:26 +0200 Subject: [PATCH] fix: wip --- services/api/src/api/v1/services/auth-token-handler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/api/src/api/v1/services/auth-token-handler.js b/services/api/src/api/v1/services/auth-token-handler.js index e988fa5..7a9343f 100644 --- a/services/api/src/api/v1/services/auth-token-handler.js +++ b/services/api/src/api/v1/services/auth-token-handler.js @@ -10,7 +10,7 @@ module.exports = ({ services: { sortRolesByLevel, signJwt } }) => { const { claimsNamespace, jwtExpirationInHours } = config - async function validateAuthToken(authTokenJwt) { + function validateAuthToken(authTokenJwt) { try { const { authToken } = jwtDecode(authTokenJwt) return authToken