Skip to content

Commit

Permalink
style(asker-profile): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
koepferd committed Jun 11, 2024
1 parent 6382401 commit 0d16614
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/components/profile/AskerConsultingTypeData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const AskerConsultingTypeData = () => {
Object.keys(resort.sessionData).map(
(item, itemIndex) =>
item === 'age' &&
resort.sessionData[item] ===
resort.sessionData[item] ===
'null' ? null : (
<div
className="profile__data__item"
Expand All @@ -56,7 +56,7 @@ export const AskerConsultingTypeData = () => {
<p className="profile__data__label">
{translate(
'userProfile.data.' +
item
item
)}
</p>
<p
Expand All @@ -72,24 +72,24 @@ export const AskerConsultingTypeData = () => {
item
]
? translate(
handleNumericTranslation(
getUserDataTranslateBase(
parseInt(
resort
.agency
.consultingType
)
),
item,
resort
.sessionData[
item
]
handleNumericTranslation(
getUserDataTranslateBase(
parseInt(
resort
.agency
.consultingType
)
),
item,
resort
.sessionData[
item
]
)
)
)
: translate(
'profile.noContent'
)}
'profile.noContent'
)}
</p>
</div>
)
Expand Down

0 comments on commit 0d16614

Please sign in to comment.