Conversation
WalkthroughThe changes involve enhancements to the Changes
Assessment against linked issues
Possibly related PRs
Suggested reviewers
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (1)
Additional comments not posted (4)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 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 (
|
There was a problem hiding this comment.
Approved 👍 Pending comment resolution 🚧
I tested and the Switch chain button no longer causes a page reload, as intended 👍
Screencast from 09-17-2024 05:59:44 PM.webm
| $: { | ||
| const currentWalletAddress = wallet?.accounts[0]?.address; | ||
| const currentNetwork = wallet?.chains[0]?.id; | ||
|
|
||
| if ( | ||
| currentWalletAddress && | ||
| currentWalletAddress !== previousWalletAddress | ||
| ) { | ||
| getRequests(); | ||
| previousWalletAddress = currentWalletAddress; | ||
|
|
||
| activeRequest = undefined; | ||
| } | ||
|
|
||
| if (currentNetwork && currentNetwork !== previousNetwork) { | ||
| previousNetwork = currentNetwork; | ||
| } | ||
| } |
There was a problem hiding this comment.
What is the impact of having both the currentWalletAddress and currentNetwork logic in the same reactive statement $:?
There was a problem hiding this comment.
Well, we are using it only there, so I thought we didn't need it outside this reactive statement.
Fixes #95
Problem
When someone tries to use the button Switch Network or even switch network from their wallet, that triggers a refetch of the whole table and gives impression of page reloading
Solution
preventDefaultto the button just in casewindow.ethereumfunctions to the types fileSummary by CodeRabbit
Summary by CodeRabbit
New Features
Bug Fixes
Documentation