-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Show account category on details page
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { ACCOUNT_CATEGORIES } from "shared-types"; | ||
|
||
export const ACCOUNT_CATEGORIES_VERBOSE = Object.freeze({ | ||
[ACCOUNT_CATEGORIES.general]: "General", | ||
[ACCOUNT_CATEGORIES.cash]: "Cash", | ||
[ACCOUNT_CATEGORIES.currentAccount]: "Current account", | ||
[ACCOUNT_CATEGORIES.creditCard]: "Credit card", | ||
[ACCOUNT_CATEGORIES.saving]: "Saving account", | ||
[ACCOUNT_CATEGORIES.bonus]: "Bonus", | ||
[ACCOUNT_CATEGORIES.insurance]: "Insurance", | ||
[ACCOUNT_CATEGORIES.investment]: "Investment", | ||
[ACCOUNT_CATEGORIES.loan]: "Loan", | ||
[ACCOUNT_CATEGORIES.mortgage]: "Mortgage", | ||
[ACCOUNT_CATEGORIES.overdraft]: "Overdraft", | ||
[ACCOUNT_CATEGORIES.crypto]: "Crypto", | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters