Chore: fix regressions caused by rebase
This commit is contained in:
parent
ef60b15d82
commit
0d6349dbf4
26 changed files with 10471 additions and 34310 deletions
|
|
@ -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 => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue