Skip to content

Commit ccb7c5f

Browse files
committed
spell
1 parent 3b94843 commit ccb7c5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Search/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function Search({queryJSON, searchResults, onSearchListScroll, contentContainerS
209209
}
210210
});
211211

212-
const isStatementstLikeQuery = queryJSON.flatFilters.length === 2 && hasFeedFilter && hasPostedFilter;
212+
const isStatementsLikeQuery = queryJSON.flatFilters.length === 2 && hasFeedFilter && hasPostedFilter;
213213
const isUnapprovedCashLikeQuery =
214214
queryJSON.flatFilters.length === 1 &&
215215
isReimbursable &&
@@ -221,7 +221,7 @@ function Search({queryJSON, searchResults, onSearchListScroll, contentContainerS
221221
queryJSON.status[0] === CONST.SEARCH.STATUS.EXPENSE.DRAFTS &&
222222
queryJSON.status[1] === CONST.SEARCH.STATUS.EXPENSE.OUTSTANDING;
223223

224-
return isStatementstLikeQuery || isUnapprovedCashLikeQuery || isUnapprovedCardLikeQuery;
224+
return isStatementsLikeQuery || isUnapprovedCashLikeQuery || isUnapprovedCardLikeQuery;
225225
}, [offset, queryJSON.flatFilters, queryJSON.type, queryJSON.status]);
226226

227227
const previousReportActions = usePrevious(reportActions);

0 commit comments

Comments
 (0)