Chore: fix regressions caused by rebase

This commit is contained in:
csrapr 2021-02-05 17:06:29 +00:00 committed by Josh Harvey
parent ef60b15d82
commit 0d6349dbf4
26 changed files with 10471 additions and 34310 deletions

View file

@ -11,9 +11,10 @@ const getAuthorizedStatus = it =>
: { label: 'Authorized', type: 'success' }
const getFormattedPhone = (phone, country) => {
return phone && country
? parsePhoneNumberFromString(phone, country).formatInternational()
: ''
const phoneNumber =
phone && country ? parsePhoneNumberFromString(phone, country) : null
return phoneNumber ? phoneNumber.formatInternational() : phone
}
const getName = it => {