completionId: cgen-bc1c187d26f9422aa80873213ada90ac
cgen-bc1c187d26f9422aa80873213ada90ac
This commit is contained in:
parent
5c48a06000
commit
e16aea5fb7
1 changed files with 6 additions and 4 deletions
|
|
@ -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(() => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue