Skip to content

Commit

Permalink
swap first and last names
Browse files Browse the repository at this point in the history
  • Loading branch information
johnb8005 authored Oct 23, 2022
1 parent da5ad25 commit 0117aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export default class Google extends AbstractOAuth<Profile> {
return {
id: res.id,
email: res.email,
firstName: res.family_name,
lastName: res.given_name,
lastName: res.family_name,
firstName: res.given_name,
};
} catch (err) {
console.log("error refresh");
Expand Down

0 comments on commit 0117aa4

Please sign in to comment.