From 3190cb75ad35b489a994fd1b48ec169c9255f9d0 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 15 Dec 2025 12:13:09 -0600 Subject: [PATCH] Show full name --- src/components/contacts/screens/ViewMatches.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/contacts/screens/ViewMatches.tsx b/src/components/contacts/screens/ViewMatches.tsx index 763af7cc1f..d92cb88b1e 100644 --- a/src/components/contacts/screens/ViewMatches.tsx +++ b/src/components/contacts/screens/ViewMatches.tsx @@ -447,7 +447,7 @@ function MatchItem({ const contactName = useMemo(() => { if (!contact) return null - const name = contact.firstName ?? contact.lastName ?? contact.name + const name = contact.name ?? contact.firstName ?? contact.lastName if (name) return _(msg`Your contact ${name}`) const phone = contact.phoneNumbers?.find(p => p.isPrimary) ?? contact.phoneNumbers?.[0] @@ -518,7 +518,7 @@ function ContactItem({ const {_} = useLingui() const {currentAccount} = useSession() - const name = contact.firstName ?? contact.lastName ?? contact.name + const name = contact.name ?? contact.firstName ?? contact.lastName const phone = contact.phoneNumbers?.find(phone => phone.isPrimary) ?? contact.phoneNumbers?.[0]