diff --git a/src/CONST/index.ts b/src/CONST/index.ts index b120caa3464f..b31422b568d4 100755 --- a/src/CONST/index.ts +++ b/src/CONST/index.ts @@ -6168,6 +6168,7 @@ const CONST = { CHAT: 'chat', }, ACTION_FILTERS: { + APPROVE: 'approve', PAY: 'pay', EXPORT: 'export', }, diff --git a/src/libs/SearchUIUtils.ts b/src/libs/SearchUIUtils.ts index 5048c5b41612..621898e7adbc 100644 --- a/src/libs/SearchUIUtils.ts +++ b/src/libs/SearchUIUtils.ts @@ -1430,7 +1430,7 @@ function createTypeMenuSections(session: OnyxTypes.Session | undefined, hasCardF const queryString = buildQueryStringFromFilterFormValues({ type: CONST.SEARCH.DATA_TYPES.EXPENSE, groupBy: CONST.SEARCH.GROUP_BY.REPORTS, - status: CONST.SEARCH.STATUS.EXPENSE.OUTSTANDING, + action: CONST.SEARCH.ACTION_FILTERS.APPROVE, to: [`${session.accountID}`], }); return queryString;