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 747c96d commit 8a99476Copy full SHA for 8a99476
src/Router/utils/helpers.js
@@ -113,7 +113,7 @@ export const incorrectParams = (cb, route) => {
113
114
export const getQueryStringParams = (hash = getActiveHash()) => {
115
const resumeHash = getResumeHash()
116
- if (hash === '$' || resumeHash) {
+ if ((hash === '$' || !hash) && resumeHash) {
117
if (isString(resumeHash)) {
118
hash = resumeHash
119
}
0 commit comments