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
From the search results page, navigate to an experiment page, then hit the back button on the browser. This takes the user back to the search page but cannot use the forward button on the browser to go back to the experiment page.
The text was updated successfully, but these errors were encountered:
For the record: This bug was caused because we always update the browser url after every search. This is done by calling history.push. When navigating back from an experiment page, this update is triggered, which adds a new entry in the browser history removing the entry for the experiments page, and disabling the forward arrow.
This is the default behavior of history.push, adding a new entry in the browser history even though there won't be any change in the url. There's some discussion around it, such as remix-run/history#470.
I used some of the suggestions and modified the behavior of history in 604b269
From the search results page, navigate to an experiment page, then hit the back button on the browser. This takes the user back to the search page but cannot use the forward button on the browser to go back to the experiment page.
The text was updated successfully, but these errors were encountered: