Skip to content

Commit

Permalink
Merge pull request #51 from DevKor-github/api/signUp
Browse files Browse the repository at this point in the history
log
  • Loading branch information
halionaz authored Aug 21, 2024
2 parents cc50828 + a54fa41 commit 69a37bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libs/clients/AuthProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export function AuthProvider() {
if (c.trim().startsWith('access-token=')) accessToken = c.split('=')[1];
if (c.trim().startsWith('refresh-token=')) refreshToken = c.split('=')[1];
});
console.log(`access: ${accessToken}`);
console.log(`refresh: ${refreshToken}`);
if (!accessToken || !refreshToken) {
clearTokens();
return false;
Expand Down

0 comments on commit 69a37bd

Please sign in to comment.