Fix issue with addon-queryparams

It was replacing `location.search` but that could be the empty string 🤦
This commit is contained in:
Tom Coleman 2020-06-12 14:15:19 +10:00
parent 465360aa84
commit b9567054a1

View File

@ -17,10 +17,10 @@ export const withQuery = makeDecorator({
? qs.parse(parameters, { ignoreQueryPrefix: true })
: parameters;
const newQuery = qs.stringify({ ...currentQuery, ...additionalQuery });
const newLocation = location.href.replace(location.search, `?${newQuery}`);
const newLocation = new URL(document.location.href);
newLocation.search = qs.stringify({ ...currentQuery, ...additionalQuery });
history.replaceState({}, document.title, newLocation);
history.replaceState({}, document.title, newLocation.toString());
return getStory(context);
},