Skip to content

Commit

Permalink
Merge branch 'staging' into duplicate-connection
Browse files Browse the repository at this point in the history
  • Loading branch information
mvadari authored Dec 2, 2024
2 parents 63b351d + 9eea4fa commit 6d31cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/shared/components/Amount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const Amount = ({
const currency = typeof value === 'string' ? 'XRP' : value.currency
const amount =
typeof value === 'string' ? parseInt(value, 10) / XRP_BASE : value.amount
const isMPT = typeof value === 'string' ? false : value.isMPT
const isMPT = typeof value === 'string' ? false : value.isMPT ?? false

const options = { ...CURRENCY_OPTIONS, currency }

Expand Down

0 comments on commit 6d31cd4

Please sign in to comment.