From b78235e109d8a8a0921f3f4e58d2aaaa237000eb Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Fri, 27 Jan 2023 16:53:24 -0500 Subject: [PATCH] Let users search and go back to a small left pane --- ts/components/leftPane/LeftPaneInboxHelper.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ts/components/leftPane/LeftPaneInboxHelper.tsx b/ts/components/leftPane/LeftPaneInboxHelper.tsx index a7e4757a55..720ce0eec5 100644 --- a/ts/components/leftPane/LeftPaneInboxHelper.tsx +++ b/ts/components/leftPane/LeftPaneInboxHelper.tsx @@ -245,11 +245,7 @@ export class LeftPaneInboxHelper extends LeftPaneHelper !this.conversations.length && !this.pinnedConversations.length && !this.archivedConversations.length; - return ( - hasNoConversations || - this.isAboutToSearchInAConversation || - Boolean(this.startSearchCounter) - ); + return hasNoConversations || this.isAboutToSearchInAConversation; } shouldRecomputeRowHeights(old: Readonly): boolean {