Skip to content

Commit

Permalink
Add confirmed new tx to list on dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
n9lsjr committed Nov 29, 2023
1 parent 85c721a commit 554e64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/wallet/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 554e64f

Please sign in to comment.