diff --git a/example/screens/TransactScreen.tsx b/example/screens/TransactScreen.tsx index 9f79fae..220cedd 100644 --- a/example/screens/TransactScreen.tsx +++ b/example/screens/TransactScreen.tsx @@ -51,6 +51,7 @@ const TransactScreen: React.FC = () => { { key: Product.DEPOSIT, label: 'Deposit' }, { key: Product.PRESENT, label: 'Present' }, { key: Product.SWITCH, label: 'Switch' }, + { key: Product.MANAGE, label: 'Manage' }, ]; const getScope = () => { diff --git a/src/constants.tsx b/src/constants.tsx index 0a2d86c..b05c675 100644 --- a/src/constants.tsx +++ b/src/constants.tsx @@ -5,6 +5,7 @@ export const Product = { WITHHOLD: 'withhold', PRESENT: 'present', SWITCH: 'switch', + MANAGE: 'manage', }; export const Scope = { @@ -48,7 +49,7 @@ export const DeferredPaymentMethodStrategy = { export const App = { PAY_NOW: 'pay-now', - TRANSACTIONS: 'transactions', + EXPENSES: 'expenses', ORDERS: 'orders', SUGGESTIONS: 'suggestions', } as const;