From 9f2313077764c8bf7f419ae38c8c7403f27274c0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 16 Aug 2025 04:11:18 +0000 Subject: [PATCH] Fix updateUserXPAndLevel profiles update table name cgen-4a0f8a14fa3e4bce9b213664593c0b7e --- client/lib/aethex-database-adapter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index 802b700c..9cef60c7 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -346,7 +346,7 @@ export const aethexAchievementService = { // Update profile await supabase - .from("profiles") + .from("user_profiles") .update({ total_xp: newTotalXP, level: newLevel,