We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af70d48 commit a989a85Copy full SHA for a989a85
CHANGELOG.md
@@ -12,6 +12,8 @@ Bugfixes:
12
13
Other improvements:
14
15
+- Use `replaceState` for setting query params (#266 by @ptrfrncsmrph)
16
+
17
## [v2021-11-30.1](https://github.com/purescript/trypurescript/releases/tag/v2021-11-11.1)
18
19
Breaking changes:
client/src/Try/QueryString.js
@@ -9,5 +9,5 @@ exports.setQueryParameters = function(params) {
9
return key + '=' + encodeURIComponent(params[key].replace('/', ''));
10
}).join('&');
11
- window.location.search = '?' + encodedParams;
+ window.history.replaceState(null, '', '?' + encodedParams);
};
0 commit comments