diff --git a/client/components/onboarding/CreatorProfile.tsx b/client/components/onboarding/CreatorProfile.tsx index 7f8043a2..d0e3bd88 100644 --- a/client/components/onboarding/CreatorProfile.tsx +++ b/client/components/onboarding/CreatorProfile.tsx @@ -6,15 +6,12 @@ import { useState, useMemo } from "react"; import { ChevronRight, Zap, Users, Code } from "lucide-react"; interface CreatorProfileProps { - data: { - bio?: string; - skills: string[]; - primaryArm?: string; - }; - onChange: (data: any) => void; - onNext: () => void; - onPrev: () => void; - isTransitioning: boolean; + data: any; + updateData: (data: any) => void; + nextStep: () => void; + prevStep: () => void; + currentStep: number; + totalSteps: number; } const AVAILABLE_ARMS = [