From 004413457db3a287ce714a04944683ccc263fba3 Mon Sep 17 00:00:00 2001 From: Dorian Date: Thu, 12 Mar 2026 23:15:49 +0000 Subject: [PATCH] fix: use 'invoiced' status on NWC fallback instead of invalid 'pending' Co-Authored-By: Claude Opus 4.6 --- frontend/src/composables/useWallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/composables/useWallet.ts b/frontend/src/composables/useWallet.ts index a4ed7e5..ffdb0f4 100644 --- a/frontend/src/composables/useWallet.ts +++ b/frontend/src/composables/useWallet.ts @@ -188,7 +188,7 @@ export function useWallet() { console.warn('[Wallet] NWC payment failed, falling back to polling:', err) } // NWC failed or returned no preimage — fall through to polling - paymentStatus.value = 'pending' + paymentStatus.value = 'invoiced' } // No NWC — poll for confirmation (manual payment / QR code flow)