Skip to content

Commit

Permalink
Apply .toString() on user fetch (#4128)
Browse files Browse the repository at this point in the history
  • Loading branch information
flvndvd authored Mar 4, 2024
1 parent 71ae3a0 commit 2f51bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/lib/iam/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async function fetchUserWithLegacyProvider({
const user = await User.findOne({
where: {
provider,
providerId,
providerId: providerId.toString(),
},
});

Expand Down

0 comments on commit 2f51bc7

Please sign in to comment.