Skip to content

Commit

Permalink
[Provider][Strava] Convert profile.id to String to use with Prisma Ad…
Browse files Browse the repository at this point in the history
…apter

See nextauthjs#11013 for background
  • Loading branch information
x2764tech authored Oct 3, 2024
1 parent 8c00815 commit cbb1a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/providers/strava.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function Strava<P extends StravaProfile>(
},
profile(profile) {
return {
id: profile.id,
id: String(profile.id),
name: `${profile.firstname} ${profile.lastname}`,
email: null,
image: profile.profile,
Expand Down

0 comments on commit cbb1a47

Please sign in to comment.