Commit 9b7d4748 authored by Guillermo Sanz López's avatar Guillermo Sanz López
Browse files

hardcode

parent 9928656a
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -30,8 +30,12 @@ export const getAccessToken = () => {
  if (accessTokenCookie) {
    return decryptString(accessTokenCookie, ACCESS_TOKEN_ENCRYPTION_KEY);
  } else {
    
    // Si la cookie no existe, imprime el contenido de todas las cookies
   

    console.log('GET ACCESS COOKIE:', Cookies.get());

    return null;
  }
};