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
As of right now href expect (and also auto complete) full path, this is an issue when I want to navigate to a "sibling" path and keep all the url params. The current way is to get all the params and pass it again which can be "ugly" and not convenient.
Example:
The browserRouter path is: "root/: someId/PathA" and "root/: someId/PathB"
I want to navigate from pathA to pathB by relative path "./PathB" and keep the current "soemId" in the url
a possible solution is to add to the href options object a boolean property "relative" and the path will accept and auto complete this syntax "./path"
The text was updated successfully, but these errors were encountered:
As of right now href expect (and also auto complete) full path, this is an issue when I want to navigate to a "sibling" path and keep all the url params. The current way is to get all the params and pass it again which can be "ugly" and not convenient.
Example:
The browserRouter path is: "root/: someId/PathA" and "root/: someId/PathB"
I want to navigate from pathA to pathB by relative path "./PathB" and keep the current "soemId" in the url
a possible solution is to add to the href options object a boolean property "relative" and the path will accept and auto complete this syntax "./path"
The text was updated successfully, but these errors were encountered: