Skip to content

Commit

Permalink
resolve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kangmingtay committed Feb 6, 2024
1 parent a48f647 commit 36dfbed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions internal/api/provider/oidc.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,8 @@ func parseGoogleIDToken(token *oidc.IDToken) (*oidc.IDToken, *UserProvidedData,

if claims.Email != "" {
data.Emails = append(data.Emails, Email{
Email: claims.Email,
// Verified: claims.IsEmailVerified(),
Verified: false,
Email: claims.Email,
Verified: claims.IsEmailVerified(),
Primary: true,
})
}
Expand Down

0 comments on commit 36dfbed

Please sign in to comment.