Fix database table name from profiles to user_profiles

cgen-4a0ff9b81ae94ea4bed5463240b3c519
This commit is contained in:
Builder.io 2025-08-16 04:09:47 +00:00
parent b24ec03184
commit 31753f3717

View file

@ -75,7 +75,7 @@ export const aethexUserService = {
if (!user) return null;
const { data, error } = await supabase
.from("profiles")
.from("user_profiles")
.select("*")
.eq("id", user.id)
.single();