Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
fullstackninja864 committed Oct 13, 2023
1 parent 927a728 commit 261f73e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export function ConvertConfirmationScreen({ route }: Props): JSX.Element {
`${targetToken.displayTextSymbol}${
convertDirection === ConvertDirection.dvmToEvm &&
targetToken.tokenId !== "0_evm"
? "(EVM)"
? " (EVM)"
: ""
}`,
),
Expand Down Expand Up @@ -252,7 +252,7 @@ export function ConvertConfirmationScreen({ route }: Props): JSX.Element {
convertDirection !== ConvertDirection.evmToDvm &&
sourceToken.tokenId !== "0_evm"
? ""
: "(EVM)"
: " (EVM)"
}`,
testID: "resulting_tokens_value",
themedProps: {
Expand Down Expand Up @@ -296,7 +296,7 @@ export function ConvertConfirmationScreen({ route }: Props): JSX.Element {
suffix: ` ${targetToken.displayTextSymbol}${
convertDirection === ConvertDirection.dvmToEvm &&
targetToken.tokenId !== "0_evm"
? "(EVM)"
? " (EVM)"
: ""
}`,
testID: "resulting_utxo_value",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export function ConvertScreen(props: Props): JSX.Element {
"screens/ConvertScreen",
`${sourceToken.token.displayTextSymbol}${
domain === DomainType.EVM && sourceToken.tokenId !== "0_evm"
? "(EVM)"
? " (EVM)"
: ""
}`,
),
Expand Down

0 comments on commit 261f73e

Please sign in to comment.