completionId: cgen-bc1c187d26f9422aa80873213ada90ac

cgen-bc1c187d26f9422aa80873213ada90ac
This commit is contained in:
Builder.io 2025-11-15 16:50:11 +00:00
parent 5c48a06000
commit e16aea5fb7

View file

@ -72,10 +72,12 @@ export default function CreatorProfile({
totalSteps, totalSteps,
}: CreatorProfileProps) { }: CreatorProfileProps) {
const [inputValue, setInputValue] = useState(""); const [inputValue, setInputValue] = useState("");
const creatorData = data?.creatorProfile || { const creatorData = {
bio: "", bio: data?.creatorProfile?.bio || "",
skills: [], skills: Array.isArray(data?.creatorProfile?.skills)
primaryArm: "", ? data.creatorProfile.skills
: [],
primaryArm: data?.creatorProfile?.primaryArm || "",
}; };
const canProceed = useMemo(() => { const canProceed = useMemo(() => {