Alvi
Alvi4w ago

shouldLinkViaEmail not working as intended

is have set shouldLinkViaEmail to false, but still the sign up accounts are linked by email. here is the code:
const account = await createAccount<DataModel>(ctx, {
provider,
account: { id: email, secret },
profile: {
...fields,
phoneVerificationTime: Date.now(),
},
shouldLinkViaEmail: false,
shouldLinkViaPhone: true,
});
const account = await createAccount<DataModel>(ctx, {
provider,
account: { id: email, secret },
profile: {
...fields,
phoneVerificationTime: Date.now(),
},
shouldLinkViaEmail: false,
shouldLinkViaPhone: true,
});
6 Replies
Convex Bot
Convex Bot4w ago
Thanks for posting in <#1088161997662724167>. Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets. - Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.) - Use search.convex.dev to search Docs, Stack, and Discord all at once. - Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI. - Avoid tagging staff unless specifically instructed. Thank you!
erquhart
erquhart4w ago
Can you confirm that you're using the ConvexCredentials provider and not one of the others (email, phone, password)?
Alvi
AlviOP4w ago
i use ConvexCredentials from import { ConvexCredentials } from "@convex-dev/auth/providers/ConvexCredentials";
erquhart
erquhart4w ago
Can you clarify a bit more what you're expecting to happen vs. what is happening? any chance the user being linked matches on both email and phone?
Alvi
AlviOP4w ago
when signin up users i want to only be linked by phone, but when i sign up two users with the same email they get linked and when signing up for the second user the first user account is opened
erquhart
erquhart4w ago
I'm not sure why this is, but I'm fairly certain the shouldLinkViaEmail and shouldLinkViaPhone args aren't actually in use. They're passed around but never accessed directly. Here's where it should be happening: https://github.com/get-convex/convex-auth/blob/58e978f0a0ebb18fb61433e5700f143db5d1994e/src/server/implementation/users.ts#L184-L219 So, this being a bug, best bet is to open an issue on the repo with the bug report: https://github.com/get-convex/convex-auth/issues

Did you find this page helpful?