interface: mentionText prefaces color with hash

Fixes profile overlays in mentions.
This commit is contained in:
Matilde Park 2020-12-11 00:02:56 -05:00
parent bce1b3e65e
commit 164b0910cb

View File

@ -76,7 +76,7 @@ export function Mention(props: {
<ProfileOverlay
ship={ship}
contact={contact}
color={uxToHex(contact?.color ?? '0x0')}
color={`#${uxToHex(contact?.color ?? '0x0')}`}
group={group}
onDismiss={onDismiss}
hideAvatars={false}