Use contact's familyName if givenName is empty
This commit is contained in:
@@ -44,10 +44,14 @@ export function combineNames(
|
||||
given?: string,
|
||||
family?: string
|
||||
): undefined | string {
|
||||
if (!given) {
|
||||
if (!given && !family) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
if (!given) {
|
||||
return family;
|
||||
}
|
||||
|
||||
// Users who haven't upgraded to dual-name, or went minimal, will just have a given name
|
||||
if (!family) {
|
||||
return given;
|
||||
|
Reference in New Issue
Block a user