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 d0eb4dc commit 4eda0edCopy full SHA for 4eda0ed
src/routers/challenge-list/index.jsx
@@ -36,7 +36,8 @@ const App = () => {
36
return;
37
}
38
39
- const params = utils.url.parseUrlQuery(location.search);
+ let search = location.href.split('?').length ? '?' + location.href.split('?')[1]: ''
40
+ const params = utils.url.parseUrlQuery(search);
41
const toUpdate = utils.challenge.createChallengeFilter(params);
42
43
if (!toUpdate.types) toUpdate.types = [];
0 commit comments