Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use display name instead of 'me' text.
Signed-off-by: fenn-cs <[email protected]>
  • Loading branch information
nfebe authored and emoral435 committed Dec 26, 2023
commit ada6e3565d5c4937f88d050a8ac5ff0d2674bfc2
2 changes: 1 addition & 1 deletion core/src/services/UnifiedSearchService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down