Skip to content

Commit c7210a1

Browse files
committed
Fix Account Factories table stuck in loading state
1 parent 85e7d15 commit c7210a1

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/components/smart-wallets/AccountFactories

1 file changed

+1
-1
lines changed

apps/dashboard/src/components/smart-wallets/AccountFactories/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function useFactories() {
4040

4141
return factories.filter((f) => f !== null);
4242
},
43-
enabled: !!user?.address && isLoggedIn && !!contractListQuery.data?.length,
43+
enabled: !!user?.address && isLoggedIn && !!contractListQuery.data,
4444
});
4545
}
4646

0 commit comments

Comments
 (0)