Skip to content

Commit

Permalink
Merge pull request #94 from oasisprotocol/csillag/improve-account-cha…
Browse files Browse the repository at this point in the history
…nge-experience

Don't drop poll creation form data on account change
  • Loading branch information
csillag authored Oct 29, 2024
2 parents 66d38e8 + 3e35156 commit c9ffc98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/providers/EthereumProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const EthereumContextProvider: FC<PropsWithChildren> = ({ children }) =>
},
userAddress,
isProviderAvailable: !!ethProvider,
isConnected: userAddress !== ZeroAddress,
isConnected: state.status === ConnectionStatus.Connected,
isHomeChain,
explorerBaseUrl,
connectWallet: connect,
Expand Down

0 comments on commit c9ffc98

Please sign in to comment.