You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Click the connected wallet button to open details modal
Console shows hydration error
Root Cause:
The copy address CopyIcon component uses a <button> element, but it appears to be rendered inside another button context in the modal. Suggested Fix: Replace the nested <button> with <div role="button" tabIndex={0}> or <span> with click handler to maintain accessibility without violating HTML spec.