Browse Source

fixed typo

pull/560/head
Dan Ditomaso 1 year ago
parent
commit
4dc7788981
  1. 2
      src/pages/Messages.tsx

2
src/pages/Messages.tsx

@ -77,7 +77,7 @@ export const MessagesPage = () => {
key={otherNode.num}
label={otherNode.user?.longName ??
`!${numberToHexUnpadded(otherNode.num)}`}
active={activeChat === otherNode.num && chatType === "direct"}
active={activeChat === otherNode.num && chatType === MessageType.Direct}
onClick={() => {
setChatType(MessageType.Direct);
setActiveChat(otherNode.num);

Loading…
Cancel
Save