Stephen Ward

Results 1 comments of Stephen Ward

FWIW, adding a path property to the first argument passed to pushState() helped when this error arose in my project. ex: ```javascript let newUrl = window.location.href + '?foo=bar'; window.history.pushState({path: newUrl},...