diff --git a/web/chat/sidebar-item.react.js b/web/chat/sidebar-item.react.js --- a/web/chat/sidebar-item.react.js +++ b/web/chat/sidebar-item.react.js @@ -4,6 +4,7 @@ import * as React from 'react'; import type { SidebarInfo } from 'lib/types/thread-types'; +import { useResolvedThreadInfo } from 'lib/utils/entity-helpers'; import { useOnClickThread } from '../selectors/thread-selectors'; import css from './chat-thread-list.css'; @@ -38,14 +39,14 @@ thread arrow ); } - + const { uiName } = useResolvedThreadInfo(threadInfo); return ( <> {arrow}
-
{threadInfo.uiName}
+
{uiName}