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,
|
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(() => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue