Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions app/hooks/useWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ export const useWallet = () => {
ethWallet.isConnected,
ethWallet.isConnecting,
ethWallet.chainId,
setEthWallet,
]);

// Separate effect for authentication that runs when Ethereum address changes
Expand Down Expand Up @@ -148,7 +147,7 @@ export const useWallet = () => {
connected: strkWallet.status === "connected",
connecting: strkWallet.status === "connecting",
});
}, [strkWallet.account?.address, strkWallet.status, setStrkWallet]);
}, [strkWallet.account?.address, strkWallet.status]);

// Separate effect for Starknet authentication that runs when Starknet address changes
useEffect(() => {
Expand Down