diff --git a/web/chat/chat-thread-list-sidebar.react.js b/web/chat/chat-thread-list-sidebar.react.js --- a/web/chat/chat-thread-list-sidebar.react.js +++ b/web/chat/chat-thread-list-sidebar.react.js @@ -16,15 +16,22 @@ function ChatThreadListSidebar(props: Props): React.Node { const { sidebarInfo } = props; const { threadInfo, mostRecentNonLocalMessage } = sidebarInfo; + const { currentUser } = threadInfo; const threadID = threadInfo.id; const active = useThreadIsActive(threadID); + let unreadDot; + if (currentUser.unread) { + unreadDot =
; + } + return (