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
Previously, <CaptureClicks> would call props.gotoURL() (default: window.location.href = e.href) as soon
as the first router failed to match. This was error-prone as it depended on the registration order of routers.
Subrouters with limited routes could cause navigation not to occur.
This was masked somewhat by the extraenous setPath() calls. Navigation would occur, but onNavigation would
not fire.
Now, <CaptureClicks> calls props.gotoURL() only if all routers fail to match.