Skip to content

Commit

Permalink
Add console logs for session provider, providerUid, and providerAcces…
Browse files Browse the repository at this point in the history
…sToken
  • Loading branch information
docimin committed Nov 25, 2023
1 parent a1a98ae commit e9f1c07
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/login/page.client.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ const Login = () => {

const session = account.getSession("current");

console.log(session);
console.log(session.provider);
console.log(session.providerUid);
console.log(session.providerAccessToken);
};

const handleGithubLogin = async () => {
Expand Down

0 comments on commit e9f1c07

Please sign in to comment.