diff --git a/api/creators.ts b/api/creators.ts index e2754e0d..1488f8e1 100644 --- a/api/creators.ts +++ b/api/creators.ts @@ -175,6 +175,7 @@ export async function updateCreatorProfile(req: Request, userId: string) { arm_affiliations, is_discoverable, allow_recommendations, + spotify_profile_url, } = body; const { data, error } = await supabase @@ -189,6 +190,7 @@ export async function updateCreatorProfile(req: Request, userId: string) { arm_affiliations, is_discoverable, allow_recommendations, + spotify_profile_url, updated_at: new Date().toISOString(), }) .eq("user_id", userId)