Skip to content

Commit

Permalink
fix: update uppercase currency
Browse files Browse the repository at this point in the history
  • Loading branch information
Tien Nam Dao committed Nov 21, 2022
1 parent 7f749ae commit 4e608dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const AddressTransaction = ({ transaction }: Props) => {
size="2xs"
value={convertBalanceToView(transaction.fee)}
fixNumber={7}
currency={process.env.NEXT_PUBLIC_NATIVE_TOKEN}
currency={process.env.NEXT_PUBLIC_NATIVE_TOKEN?.toUpperCase()}
classes="contrast-color-70"
/>
)}
Expand Down
2 changes: 1 addition & 1 deletion views/transactions/TransactionRowContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function TransactionRowContent({
size="2xs"
value={convertBalanceToView(fee)}
fixNumber={7}
currency={process.env.NEXT_PUBLIC_NATIVE_TOKEN}
currency={process.env.NEXT_PUBLIC_NATIVE_TOKEN?.toUpperCase()}
classes="contrast-color-70"
/>
)}
Expand Down

0 comments on commit 4e608dd

Please sign in to comment.