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,
}: CreatorProfileProps) {
const [inputValue, setInputValue] = useState("");
const creatorData = data?.creatorProfile || {
bio: "",
skills: [],
primaryArm: "",
const creatorData = {
bio: data?.creatorProfile?.bio || "",
skills: Array.isArray(data?.creatorProfile?.skills)
? data.creatorProfile.skills
: [],
primaryArm: data?.creatorProfile?.primaryArm || "",
};
const canProceed = useMemo(() => {