diff --git a/ts/components/leftpane/LeftPaneMessageSection.tsx b/ts/components/leftpane/LeftPaneMessageSection.tsx
index 9a1dffa60..0727d0565 100644
--- a/ts/components/leftpane/LeftPaneMessageSection.tsx
+++ b/ts/components/leftpane/LeftPaneMessageSection.tsx
@@ -82,7 +82,7 @@ export const LeftPaneMessageSection = () => {
return ;
};
- const ConversationList = () => {
+ const renderList = () => {
if (!isEmpty(searchTerm)) {
return ;
}
@@ -113,7 +113,7 @@ export const LeftPaneMessageSection = () => {
);
};
- const Conversations = () => {
+ const renderConversations = () => {
return (
@@ -122,7 +122,7 @@ export const LeftPaneMessageSection = () => {
window.inboxStore?.dispatch(setLeftOverlayMode('message-requests'));
}}
/>
-
+ {renderList()}
);
};
@@ -130,7 +130,7 @@ export const LeftPaneMessageSection = () => {
return (
- {leftOverlayMode ? : }
+ {leftOverlayMode ? : renderConversations()}
);
};