From 7b385233f02cbceca9486488c16543f3988734e1 Mon Sep 17 00:00:00 2001 From: krishna2323 Date: Tue, 20 Aug 2024 16:09:44 +0530 Subject: [PATCH] fix: List empty content does not render. Signed-off-by: krishna2323 --- src/components/SelectionList/BaseSelectionList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SelectionList/BaseSelectionList.tsx b/src/components/SelectionList/BaseSelectionList.tsx index bbc8615898df..7d8f4c1738c8 100644 --- a/src/components/SelectionList/BaseSelectionList.tsx +++ b/src/components/SelectionList/BaseSelectionList.tsx @@ -97,7 +97,7 @@ function BaseSelectionList( shouldDelayFocus = true, shouldUpdateFocusedIndex = false, onLongPressRow, - shouldShowListEmptyContent = false, + shouldShowListEmptyContent = true, }: BaseSelectionListProps, ref: ForwardedRef, ) {