Fix points_reward to xp_reward in updateUserXPAndLevel call

cgen-7fc0fd30e716418eb0930ba74b9e162f
This commit is contained in:
Builder.io 2025-08-16 04:10:59 +00:00
parent 644d8b79b1
commit a1ce309b12

View file

@ -326,7 +326,7 @@ export const aethexAchievementService = {
});
// Update user's total XP and level
await this.updateUserXPAndLevel(userId, achievement.points_reward);
await this.updateUserXPAndLevel(userId, achievement.xp_reward);
}
},