From 0c3dcf6863ed7622c37c7f05a46f9d4fee87f591 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Tue, 2 Apr 2024 14:18:21 -0500 Subject: [PATCH] show profile images for requests --- src/components/PendingNwc.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/PendingNwc.tsx b/src/components/PendingNwc.tsx index fef3c1c7..a5951861 100644 --- a/src/components/PendingNwc.tsx +++ b/src/components/PendingNwc.tsx @@ -26,6 +26,7 @@ type PendingItem = { name_of_connection: string; date?: bigint; amount_sats?: bigint; + image?: string; }; export function PendingNwc() { @@ -65,6 +66,7 @@ export function PendingNwc() { pendingItems.push({ id: p.id, name_of_connection: contact.name, + image: contact.image_url, date: p.expiry, amount_sats: p.amount_sats }); @@ -198,7 +200,7 @@ export function PendingNwc() { {(pendingItem) => (