We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ec89c commit 56ebaa4Copy full SHA for 56ebaa4
app/src/views/CountryNsOverviewContextAndStructure/NationalSocietyLocalUnits/LocalUnitsTable/index.tsx
@@ -106,12 +106,12 @@ function LocalUnitsTable() {
106
createStringColumn<LocalUnitsTableListItem, number>(
107
'phone',
108
strings.localUnitsTablePhoneNumber,
109
- (item) => item.phone,
+ (item) => chooseName(item.phone, item?.health_details?.focal_point_phone_number),
110
),
111
112
'email',
113
strings.localUnitsTableEmail,
114
- (item) => item.email,
+ (item) => chooseName(item.email, item?.health_details?.focal_point_email),
115
116
createBooleanColumn<LocalUnitsTableListItem, number>(
117
'validated',
0 commit comments