@@ -42,7 +42,6 @@ import {
4242 shouldShowEmptyState ,
4343 shouldShowYear as shouldShowYearUtil ,
4444} from '@libs/SearchUIUtils' ;
45- import type { SearchKey } from '@libs/SearchUIUtils' ;
4645import { isOnHold , isTransactionPendingDelete } from '@libs/TransactionUtils' ;
4746import Navigation , { navigationRef } from '@navigation/Navigation' ;
4847import type { SearchFullscreenNavigatorParamList } from '@navigation/types' ;
@@ -210,7 +209,7 @@ function Search({queryJSON, searchResults, onSearchListScroll, contentContainerS
210209 }
211210 } ) ;
212211
213- const isStatemenstLikeQuery = queryJSON . flatFilters . length === 2 && hasFeedFilter && hasPostedFilter ;
212+ const isStatementstLikeQuery = queryJSON . flatFilters . length === 2 && hasFeedFilter && hasPostedFilter ;
214213 const isUnapprovedCashLikeQuery =
215214 queryJSON . flatFilters . length === 1 &&
216215 isReimbursable &&
@@ -222,7 +221,7 @@ function Search({queryJSON, searchResults, onSearchListScroll, contentContainerS
222221 queryJSON . status [ 0 ] === CONST . SEARCH . STATUS . EXPENSE . DRAFTS &&
223222 queryJSON . status [ 1 ] === CONST . SEARCH . STATUS . EXPENSE . OUTSTANDING ;
224223
225- return isStatemenstLikeQuery || isUnapprovedCashLikeQuery || isUnapprovedCardLikeQuery ;
224+ return isStatementstLikeQuery || isUnapprovedCashLikeQuery || isUnapprovedCardLikeQuery ;
226225 } , [ offset , queryJSON . flatFilters , queryJSON . type , queryJSON . status ] ) ;
227226
228227 const previousReportActions = usePrevious ( reportActions ) ;
0 commit comments