Skip to content

Commit 2f71e30

Browse files
committed
review
1 parent 91aaf58 commit 2f71e30

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

packages/react-kit/src/signing/pages/Erc20Transfer.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ export function Erc20Transfer({
8888
<div className="flex flex-col items-center justify-center gap-2 pb-2">
8989
<Text className="text-h2">Send Token</Text>
9090
<Text className="text-center">
91-
You are about to send {formattedAmount} {symbol} to {to}.
91+
You are about to send {formattedAmount} {symbol} to {shortenHex(to)}
92+
.
9293
</Text>
9394
</div>
9495
<div className="flex flex-col gap-2">

packages/react-kit/src/signing/pages/EthTransfer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function EthTransfer({ to, value, confirm, reject }: EthTransferProps) {
4242
<div className="flex flex-col items-center justify-center gap-2 pb-2">
4343
<Text className="text-h2">Send Token</Text>
4444
<Text className="text-center">
45-
You are about to send {formattedAmount} ETH to {to}.
45+
You are about to send {formattedAmount} ETH to {shortenHex(to)}.
4646
</Text>
4747
</div>
4848
<div className="flex flex-col gap-2">

0 commit comments

Comments
 (0)