From 554e64f1c8ee91ef9da421f96071d772530a36c8 Mon Sep 17 00:00:00 2001 From: n9lsjr Date: Wed, 29 Nov 2023 18:23:11 +0100 Subject: [PATCH] Add confirmed new tx to list on dashboard --- src/routes/wallet/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/wallet/+layout.svelte b/src/routes/wallet/+layout.svelte index 7a6aa68..3422d20 100644 --- a/src/routes/wallet/+layout.svelte +++ b/src/routes/wallet/+layout.svelte @@ -24,7 +24,7 @@ hash: tx.hash, time: tx.timestamp, }; - if ($page.url.pathname === '/wallet/history' && $transactions.page === 0) { + if ($page.url.pathname === '/wallet/dashboard' && $transactions.page === 0) { $transactions.txs.unshift(transaction); } $transactions.txs = $transactions.txs;