diff --git a/api/creators.ts b/api/creators.ts index 10a7205c..e2754e0d 100644 --- a/api/creators.ts +++ b/api/creators.ts @@ -128,6 +128,7 @@ export async function createCreatorProfile(req: Request, userId: string) { experience_level, primary_arm, arm_affiliations, + spotify_profile_url, } = body; const { data, error } = await supabase @@ -141,6 +142,7 @@ export async function createCreatorProfile(req: Request, userId: string) { experience_level, primary_arm, arm_affiliations: arm_affiliations || [], + spotify_profile_url, }) .select() .single();