From c1d31f7a40330de9cd23f67cc589c71c109464bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josip=20Boj=C4=8Di=C4=87?= Date: Sun, 7 Sep 2025 15:18:50 +0200 Subject: [PATCH] Fix bug with marking cashu send quote as pending --- app/features/send/cashu-send-quote-hooks.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/features/send/cashu-send-quote-hooks.ts b/app/features/send/cashu-send-quote-hooks.ts index 2cbdb1ec2..d56362f21 100644 --- a/app/features/send/cashu-send-quote-hooks.ts +++ b/app/features/send/cashu-send-quote-hooks.ts @@ -405,6 +405,7 @@ function useOnMeltQuoteStateChange({ const handleMeltQuoteUpdate = useCallback( async (meltQuote: MeltQuoteResponse) => { + // TODO: remove (or mask) the sensitive data from this log (or see if we can configure sentry not to send sensitive data to server) or completely remove it. console.debug('Melt quote updated', meltQuote); const relatedSendQuote = sendQuotes.find( @@ -625,8 +626,6 @@ export function useProcessCashuSendQuoteTasks() { }); } }); - - await cashuSendService.markSendQuoteAsPending(sendQuote); }, retry: 3, throwOnError: true,