Skip to content

Commit

Permalink
Fix top 500 crowns not showing on user builds page
Browse files Browse the repository at this point in the history
  • Loading branch information
Sendouc committed Nov 5, 2023
1 parent 9006d92 commit cde0882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/features/builds/BuildRepository.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function allByUserId({
.selectFrom("Build")
.innerJoin("BuildWeapon", "Build.id", "BuildWeapon.buildId")
.leftJoin("SplatoonPlayer", (join) =>
join.on("SplatoonPlayer.id", "=", userId),
join.on("SplatoonPlayer.userId", "=", userId),
)
.leftJoin("XRankPlacement", (join) =>
join
Expand Down

0 comments on commit cde0882

Please sign in to comment.