-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(web): incorrect-chain-detection #59
Conversation
WalkthroughThe changes in this pull request focus on the Changes
Possibly related PRs
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
✅ Deploy Preview for curate-v2 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
PR-Codex overview
This PR focuses on improving the null safety of chain checks in the
EnsureChain
andConnectWallet
components by using optional chaining.Detailed summary
EnsureChain.tsx
, changedreturn chain && chain.id === DEFAULT_CHAIN
toreturn chain?.id === DEFAULT_CHAIN
for safer access.ConnectWallet/index.tsx
, updatedif (chain && chain.id !== DEFAULT_CHAIN)
toif (chain?.id !== DEFAULT_CHAIN)
for improved null safety.Summary by CodeRabbit
Bug Fixes
ConnectWallet
component to prevent runtime errors when accessing the connected chain.Refactor