Use raw display names for members

This commit is contained in:
Robert Long 2022-02-23 16:41:12 -08:00
parent 0a49ddb31e
commit 6a18ba0110

View file

@ -9,7 +9,7 @@ export function useProfile(client) {
return {
success: false,
loading: false,
displayName: user?.displayName,
displayName: user?.rawDisplayName,
avatarUrl: user && client && getAvatarUrl(client, user.avatarUrl),
error: null,
};