Skip to content

Commit

Permalink
fixes not found screen breify showing
Browse files Browse the repository at this point in the history
  • Loading branch information
ishpaul777 committed Apr 20, 2024
1 parent 47cf940 commit 1fc7b2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ function MoneyTemporaryForRefactorRequestParticipantsSelector({participants, onF
);

const isAllSectionsEmpty = _.every(sections, (section) => section.data.length === 0);
if ([CONST.IOU.ACTION.CATEGORIZE, CONST.IOU.ACTION.SHARE].includes(action) && isAllSectionsEmpty && didScreenTransitionEnd && searchTerm.trim() === '') {
if ([CONST.IOU.ACTION.CATEGORIZE, CONST.IOU.ACTION.SHARE].includes(action) && isAllSectionsEmpty && didScreenTransitionEnd && debouncedSearchTerm.trim() === '') {
return renderEmptyWorkspaceView();
}

Expand Down

0 comments on commit 1fc7b2b

Please sign in to comment.