Skip to content

Commit

Permalink
fix(api): 🐛 remove profile picture from JWT
Browse files Browse the repository at this point in the history
  • Loading branch information
rasouza committed Apr 28, 2024
1 parent 384281d commit b5d5583
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/api/src/auth/strategies/jwt.strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') {

return {
id: payload.sub,
email: payload.email,
picture: payload.picture
email: payload.email
}
}
}

0 comments on commit b5d5583

Please sign in to comment.