aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/lib/url.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/lib/url.js')
-rw-r--r--src/client/react/lib/url.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/react/lib/url.js b/src/client/react/lib/url.js
index 77731fc..be09acf 100644
--- a/src/client/react/lib/url.js
+++ b/src/client/react/lib/url.js
@@ -53,5 +53,6 @@ export function setWeek(week, location, history) {
...queryString.parse(location.search),
week,
});
- history.push(`${location.pathname}${query}`);
+
+ history.push(`${location.pathname}?${query}`);
}