Skip to content

Commit b6aef3c

Browse files
committed
fix: gas fee in transfer should be $ETH, not $SP
1 parent ff437db commit b6aef3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/Transfer/page-components/SecondStep.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ export default function SecondStep({ selectedNftId, updateCounter, gasFee }: Sec
5959

6060
<div>
6161
<p>GAS Fee</p>
62-
{gasFee ? <p>{gasFee} SP</p> : <Skeleton height="19px" width="160px" />}
62+
{gasFee ? <p>{gasFee} $ETH</p> : <Skeleton height="19px" width="160px" />}
6363
</div>
6464

6565
<Separator />
6666

6767
<div>
6868
<p>Total</p>
69-
{gasFee ? <p>{gasFee} SP</p> : <Skeleton height="19px" width="160px" />}
69+
{gasFee ? <p>{gasFee} $ETH</p> : <Skeleton height="19px" width="160px" />}
7070
</div>
7171
</div>
7272
</div>

0 commit comments

Comments
 (0)