diff --git a/ts/components/inputs/SessionInput.tsx b/ts/components/inputs/SessionInput.tsx
index adffd829f..e8bb2e4fa 100644
--- a/ts/components/inputs/SessionInput.tsx
+++ b/ts/components/inputs/SessionInput.tsx
@@ -177,19 +177,21 @@ const ShowHideButton = (props: {
if (props.forceShow) {
return (
);
}
return (
{
return ;
};
- const renderList = () => {
+ const ConversationList = () => {
if (!isEmpty(searchTerm)) {
return ;
}
@@ -113,7 +113,7 @@ export const LeftPaneMessageSection = () => {
);
};
- const renderConversations = () => {
+ const Conversations = () => {
return (
@@ -122,7 +122,7 @@ export const LeftPaneMessageSection = () => {
window.inboxStore?.dispatch(setLeftOverlayMode('message-requests'));
}}
/>
- {renderList()}
+
);
};
@@ -130,7 +130,7 @@ export const LeftPaneMessageSection = () => {
return (
- {leftOverlayMode ? : renderConversations()}
+ {leftOverlayMode ? : }
);
};
diff --git a/ts/components/loading/bar/SessionProgressBar.tsx b/ts/components/loading/bar/SessionProgressBar.tsx
index ef701e98c..c7a6bc921 100644
--- a/ts/components/loading/bar/SessionProgressBar.tsx
+++ b/ts/components/loading/bar/SessionProgressBar.tsx
@@ -72,7 +72,12 @@ export function SessionProgressBar(props: Props) {
{showPercentage ? {Math.floor(progress)}% : null}
{subtitle || showPercentage ? : null}
-
+