From ee9e9d9ec0160a8f234c40bb22b5431ab3971343 Mon Sep 17 00:00:00 2001 From: krishna2323 Date: Fri, 16 Aug 2024 04:23:59 +0530 Subject: [PATCH] fix: Workspace switcher - Empty workspace switcher does not have 'Create a workspace' modal. Signed-off-by: krishna2323 --- src/pages/WorkspaceSwitcherPage/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/WorkspaceSwitcherPage/index.tsx b/src/pages/WorkspaceSwitcherPage/index.tsx index 1cbe1bd4cbcf..562f11aa5bc5 100644 --- a/src/pages/WorkspaceSwitcherPage/index.tsx +++ b/src/pages/WorkspaceSwitcherPage/index.tsx @@ -191,7 +191,8 @@ function WorkspaceSwitcherPage() { textInputValue={searchTerm} onChangeText={setSearchTerm} headerMessage={headerMessage} - listFooterContent={shouldShowCreateWorkspace ? WorkspaceCardCreateAWorkspaceInstance : null} + listEmptyContent={WorkspaceCardCreateAWorkspaceInstance} + shouldShowListEmptyContent={shouldShowCreateWorkspace} initiallyFocusedOptionKey={activeWorkspaceID ?? CONST.WORKSPACE_SWITCHER.NAME} showLoadingPlaceholder={fetchStatus.status === 'loading' || !didScreenTransitionEnd} />