Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brtkx committed Dec 17, 2024
1 parent 122a283 commit bb5879c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ const useMappedReceiverTransactionHistory = ({
transactions: receiverTransactions || [],
error: receiverTransactionsError,
completed: !isLoadingReceiverTransactions,
loading: isLoadingReceiverTransactions,
loading: isLoadingReceiverTransactions || rawDataLoading,
rawDataErroredChains,
updatePendingTransaction
}
Expand Down Expand Up @@ -1072,7 +1072,7 @@ export const useTransactionHistory = (
updatePendingTransaction: updatePendingReceiverTransaction
} = useMappedReceiverTransactionHistory({
address,
shouldStartToFetch: senderTransactions.length > 0 && !loadingForSender
shouldStartToFetch: firstPageLoadedForSender
})

const { cctpTransactions, cctpLoading } = useCctpTransactions({ address })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('Withdraw native token', () => {
})
})

it('should claim funds', { defaultCommandTimeout: 200_000 }, () => {
it('should claim funds', { defaultCommandTimeout: 300_000 }, () => {
// increase the timeout for this test as claim button can take ~(20 blocks *10 blocks/sec) to activate
cy.login({ networkType: 'parentChain' }) // login to L1 to claim the funds (otherwise would need to change network after clicking on claim)

Expand Down

0 comments on commit bb5879c

Please sign in to comment.