Use display name instead of 'me' text.

Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
This commit is contained in:
fenn-cs 2023-12-13 12:20:14 +01:00 committed by Eduardo Morales
parent 8b286fbd0e
commit ada6e3565d

View file

@ -112,7 +112,7 @@ export async function getContacts({ searchTerm }) {
let authenticatedUser = getCurrentUser()
authenticatedUser = {
id: authenticatedUser.uid,
fullName: 'Me',
fullName: authenticatedUser.displayName,
emailAddresses: [],
}
contacts.unshift(authenticatedUser)