We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c30d2 commit 5b19d63Copy full SHA for 5b19d63
packages/nami/src/adapters/transactions.ts
@@ -529,13 +529,13 @@ export const useWalletTxs = () => {
529
]);
530
531
useEffect(() => {
532
- if (!rewardAccounts) return;
+ if (!rewardAccounts || !transactions) return;
533
fetchWalletActivities();
534
}, [
535
fetchWalletActivities,
536
- transactions.history,
537
- transactions.outgoing.inFlight,
538
- transactions.outgoing.signed,
+ transactions?.history,
+ transactions?.outgoing.inFlight,
+ transactions?.outgoing.signed,
539
walletAddresses,
540
assetInfo,
541
rewardAccounts,
0 commit comments