Skip to content

Commit 036c04f

Browse files
committed
fix: existing date not loaded properly
1 parent cde9241 commit 036c04f

File tree

1 file changed

+1
-1
lines changed
  • src/apps/onboarding/src/redux/actions

1 file changed

+1
-1
lines changed

src/apps/onboarding/src/redux/actions/member.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export const fetchMemberTraits: any = () => async (dispatch: any) => {
161161
const personalizations: PersonalizationInfo[] = personalizationExpValue.map((e: any) => _.omitBy({
162162
...e,
163163
availableForGigs: e.availableForGigs,
164-
profileSelfTitle: e.profileSelfTitle,
164+
profileSelfTitle: e.personalization[0]?.profileSelfTitle || e.profileSelfTitle,
165165
referAs: e.referAs,
166166
shortBio: e.shortBio,
167167
}, _.isUndefined))

0 commit comments

Comments
 (0)