Skip to content

Commit

Permalink
Make recipient name copyable (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
KeinAsylum authored Sep 26, 2024
1 parent 7355f9a commit 3450a9d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ export function DestinationInfo({ destination }: DestinationInfoProps) {
/>
)}
{destination?.recipientName && (
<InfoItem label={l['form.p2p.destination.bank.recipient']} value={destination.recipientName} />
<InfoItem
isCopyable={true}
label={l['form.p2p.destination.bank.recipient']}
value={destination.recipientName}
/>
)}
</VStack>
);
Expand Down

0 comments on commit 3450a9d

Please sign in to comment.