-
+
+ {user.name}
+
+
+ {showCity !== false && }
+ {showAge !== false && profile.age && (
+ }
+ />
+ )}
+ {showGender !== false && profile.gender && (
+ }
+ />
+ )}
+
+ {showHeadline !== false && profile.headline && (
+
"{profile.headline}"
+ )}
+ {showKeywords !== false && !!profile.keywords?.length && (
+
+ {profile.keywords
+ ?.slice(0, 10)
+ ?.map(capitalize)
+ ?.map((tag, i) => (
+
+ {tag.trim()}
+
+ ))}
+
+ )}
+ {showSeeking !== false && seekingText && (
+
}
+ />
+ )}
+ {showOccupation !== false && profile.occupation_title && (
+
}
+ />
+ )}
+ {showInterests !== false && !!profile.interests?.length && (
+
choicesIdsToLabels['interests'][id])
+ .join(' • ')}
+ icon={}
+ />
+ )}
+ {showCauses !== false && !!profile.causes?.length && (
+ choicesIdsToLabels['causes'][id])
+ .join(' • ')}
+ icon={}
+ />
+ )}
+
+ {showDiet !== false && !!profile.diet?.length && (
+ t(`profile.diet.${e}`, INVERTED_DIET_CHOICES[e]))
+ .join(' • ')}
+ icon={}
+ />
+ )}
+ {showSmoking !== false && profile.is_smoker && (
+ }
+ />
+ )}
+ {showDrinks !== false &&
+ profile.drinks_per_month !== null &&
+ profile.drinks_per_month !== undefined && (
+ }
+ />
+ )}
+ {showMBTI !== false && profile.mbti && (
+ }
+ />
+ )}
+ {showLanguages !== false && !!profile.languages?.length && (
+ t(`profile.language.${v}`, INVERTED_LANGUAGE_CHOICES[v]))
+ .join(' • ')}
+ icon={}
+ />
+ )}
+
+ {showBio !== false && bio && (
+
+
+
+ )}
+ {isOverflowing && (
+
+ )}