Skip to content

Commit

Permalink
Update to fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lowdisk17 committed Oct 6, 2024
1 parent 7189d54 commit f8481a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Send/Send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ function Send() {
});

const fetchTransactions = () => {
fetchAddressTransactions(sender, activeChain, 0, 3)
fetchAddressTransactions(sender, activeChain, 1, 0, 3)
.then((txs) => {
const amount = new BigNumber(0)
.minus(
Expand Down
2 changes: 1 addition & 1 deletion src/pages/SendEVM/SendEVM.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ function SendEVM() {
});

const fetchTransactions = () => {
fetchAddressTransactions(sender, activeChain, 0, 3)
fetchAddressTransactions(sender, activeChain, 1, 0, 3)
.then((txs) => {
const amount = new BigNumber(0)
.minus(
Expand Down

0 comments on commit f8481a1

Please sign in to comment.