convex google oauth issue
providers: [
GitHub({
profile(githubProfile) {
return {
id: githubProfile.id.toString(),
};
},
}),
Google({
profile(googleProfile) {
console.log("googleProfile", googleProfile);
return {
id: googleProfile.id?.toString(),
};
},
}),
],error:
'The profile method of the google config must return a string IDBut in googleprofile, there is no such id returned.
