diff --git a/integrations/cognito/src/index.tsx b/integrations/cognito/src/index.tsx index b363b3333..821897980 100644 --- a/integrations/cognito/src/index.tsx +++ b/integrations/cognito/src/index.tsx @@ -294,7 +294,7 @@ const handleFetchEvent: FetchEventCallback = async (reque const jwtToken = await jwt.sign( { ...(decodedCognitoToken.payload ?? {}), - exp: Math.floor(Date.now() / 1000) + 1 * (60 * 60), + exp: Math.floor(Date.now() / 1000) + 24 * (60 * 60), }, privateKey, );