Fix updateProfile table name

cgen-442d6eec32164c9f94ce071ede57663f
This commit is contained in:
Builder.io 2025-08-16 04:09:54 +00:00
parent 31753f3717
commit 74ddee8362

View file

@ -93,7 +93,7 @@ export const aethexUserService = {
updates: Partial<AethexUserProfile>,
): Promise<AethexUserProfile | null> {
const { data, error } = await supabase
.from("profiles")
.from("user_profiles")
.update(updates)
.eq("id", userId)
.select()