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
Router will check all routes, even if a match has already been found.
Router will not take into account route specificity, so /foo/:param and /foo/new both match at the same time.
Route params should be accessed directly from the consumer component using a hook. There should be no need for the Route component to accept a function as children.
A config-driven router with configurable guard logic, param validation and lazy loading would be good and speed things up, particularly in the embedded wallet.
The text was updated successfully, but these errors were encountered:
/foo/:param
and/foo/new
both match at the same time.Route
component to accept a function as children.The text was updated successfully, but these errors were encountered: