diff --git a/net/web/src/session/conversation/Conversation.jsx b/net/web/src/session/conversation/Conversation.jsx
index c39786e7..22941ed0 100644
--- a/net/web/src/session/conversation/Conversation.jsx
+++ b/net/web/src/session/conversation/Conversation.jsx
@@ -1,4 +1,4 @@
-import { useRef } from 'react';
+import { useEffect, useRef } from 'react';
import { ConversationWrapper, StatusError } from './Conversation.styled';
import { ExclamationCircleOutlined, SettingOutlined, CloseOutlined } from '@ant-design/icons';
import { useConversation } from './useConversation.hook';
@@ -9,6 +9,9 @@ import { List, Spin, Tooltip } from 'antd';
export function Conversation({ closeConversation, openDetails, cardId, channelId }) {
+ const height = useRef(0);
+ const latch = useRef(null);
+
const { state, actions } = useConversation(cardId, channelId);
const thread = useRef(null);
@@ -16,6 +19,21 @@ export function Conversation({ closeConversation, openDetails, cardId, channelId
return (
+ size="large" gutter="0" renderItem={topicRenderer} />
)}
{ state.loadingInit && (