Skip to content

Commit

Permalink
rm finished and shared status
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Aug 13, 2024
1 parent c609b19 commit e0d88c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5271,11 +5271,10 @@ const CONST = {
STATUS: {
EXPENSE: {
ALL: 'all',
SHARED: 'shared',
DRAFTS: 'drafts',
OUTSTANDING: 'outstanding',
APPROVED: 'approved',
FINISHED: 'finished',
PAID: 'paid',
},
INVOICE: {
ALL: 'all',
Expand Down
4 changes: 2 additions & 2 deletions src/components/Search/SearchStatusBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ const expenseOptions: Array<{key: ExpenseSearchStatus; icon: IconAsset; text: Tr
query: SearchUtils.buildCannedSearchQuery(CONST.SEARCH.DATA_TYPES.EXPENSE, CONST.SEARCH.STATUS.EXPENSE.APPROVED),
},
{
key: CONST.SEARCH.STATUS.EXPENSE.FINISHED,
key: CONST.SEARCH.STATUS.EXPENSE.PAID,
icon: Expensicons.MoneyBag,
text: 'iou.settledExpensify',
query: SearchUtils.buildCannedSearchQuery(CONST.SEARCH.DATA_TYPES.EXPENSE, CONST.SEARCH.STATUS.EXPENSE.FINISHED),
query: SearchUtils.buildCannedSearchQuery(CONST.SEARCH.DATA_TYPES.EXPENSE, CONST.SEARCH.STATUS.EXPENSE.PAID),
},
];

Expand Down

0 comments on commit e0d88c3

Please sign in to comment.