Skip to content

Commit

Permalink
Fix title of destination pubkey
Browse files Browse the repository at this point in the history
  • Loading branch information
erdemyerebasmaz committed Jul 1, 2024
1 parent 4c59833 commit 03be4ac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ class PaymentDetailsDestinationPubkey extends StatelessWidget {

@override
Widget build(BuildContext context) {
final texts = context.texts();
final destinationPubkey = paymentMinutiae.swapId;
if (destinationPubkey.isNotEmpty) {
return ShareablePaymentRow(
title: texts.payment_details_dialog_single_info_node_id,
// TODO: Move this message to Breez-Translations
title: "Swap ID",
sharedValue: destinationPubkey,
);
} else {
Expand Down

0 comments on commit 03be4ac

Please sign in to comment.