Skip to content

Commit 8a99476

Browse files
Fixed getting qs params
1 parent 747c96d commit 8a99476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Router/utils/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const incorrectParams = (cb, route) => {
113113

114114
export const getQueryStringParams = (hash = getActiveHash()) => {
115115
const resumeHash = getResumeHash()
116-
if (hash === '$' || resumeHash) {
116+
if ((hash === '$' || !hash) && resumeHash) {
117117
if (isString(resumeHash)) {
118118
hash = resumeHash
119119
}

0 commit comments

Comments
 (0)