Skip to content

Commit

Permalink
feat(ui-ux): add EUROC as currency in portfolio (#3935)
Browse files Browse the repository at this point in the history
feat: add EUROC as currency in portfolio
  • Loading branch information
kyleleow authored Mar 14, 2023
1 parent df265d3 commit 28649d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,12 @@ export function PortfolioScreen({ navigation }: Props): JSX.Element {
handleOnPress: () =>
onPortfolioButtonGroupChange(PortfolioButtonGroupTabKey.USDC),
},
{
id: PortfolioButtonGroupTabKey.EUROC,
label: translate("screens/PortfolioScreen", "EUROC"),
handleOnPress: () =>
onPortfolioButtonGroupChange(PortfolioButtonGroupTabKey.EUROC),
},
];

// Asset sort bottom sheet list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export enum PortfolioButtonGroupTabKey {
BTC = "BTC",
DUSD = "DUSD",
USDC = "USDC",
EUROC = "EUROC",
}

interface TotalPortfolioProps {
Expand Down

0 comments on commit 28649d0

Please sign in to comment.