diff --git a/src/apps/profiles/src/member-profile/page-layout/ProfilePageLayout.tsx b/src/apps/profiles/src/member-profile/page-layout/ProfilePageLayout.tsx index 229c01da1..26a0af4c7 100644 --- a/src/apps/profiles/src/member-profile/page-layout/ProfilePageLayout.tsx +++ b/src/apps/profiles/src/member-profile/page-layout/ProfilePageLayout.tsx @@ -122,7 +122,11 @@ const ProfilePageLayout: FC = (props: ProfilePageLayoutP
{canSeeProfileCompleteness && ( - + )}
diff --git a/src/apps/profiles/src/member-profile/profile-completeness/ProfileCompleteness.tsx b/src/apps/profiles/src/member-profile/profile-completeness/ProfileCompleteness.tsx index ff58f578a..52524befe 100644 --- a/src/apps/profiles/src/member-profile/profile-completeness/ProfileCompleteness.tsx +++ b/src/apps/profiles/src/member-profile/profile-completeness/ProfileCompleteness.tsx @@ -8,6 +8,7 @@ import styles from './ProfileCompleteness.module.scss' interface ProfileCompletenessProps { profile: UserProfile authProfile: UserProfile | undefined + isAdminOrTM?: boolean } const ProfileCompleteness: FC = props => { @@ -42,19 +43,32 @@ const ProfileCompleteness: FC = props => {
Profile: {`${completed}% Complete`} -
- - Only - {' '} - {incompleteEntries} - {' '} - left to fill. Please add - {' '} - {count === 1 ? 'it' : 'them'} - {' '} - to make your profile more discoverable. - -
+ {!props.isAdminOrTM + && ( +
+ + Only + {' '} + {incompleteEntries} + {' '} + left to fill. Please add + {' '} + {count === 1 ? 'it' : 'them'} + {' '} + to make your profile more discoverable. + +
+ )} + {props.isAdminOrTM + && ( +
+ + {incompleteEntries} + {' '} + left to fill by the member. + +
+ )}
) }