From 03be4ac9b8bb80d25cede89c1accf428d9d511ac Mon Sep 17 00:00:00 2001 From: Erdem Yerebasmaz Date: Mon, 1 Jul 2024 13:57:14 +0300 Subject: [PATCH] Fix title of destination pubkey --- .../dialog/payment_details_dialog_destination_pubkey.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_destination_pubkey.dart b/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_destination_pubkey.dart index b216f52d..4cfd83e4 100644 --- a/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_destination_pubkey.dart +++ b/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_destination_pubkey.dart @@ -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 {