We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc28c98 + 33e8a55 commit 7f07145Copy full SHA for 7f07145
1 file changed
src/pricing/index.njk
@@ -447,7 +447,8 @@ hubspot:
447
448
// Update the history
449
let paramString = urlParams.toString();
450
- window.history.replaceState({}, '', paramString ? "?" + paramString : window.location.pathname);
+ let currentHash = window.location.hash; // Preserve the current hash
451
+ window.history.replaceState({}, '', paramString ? "?" + paramString + currentHash : window.location.pathname + currentHash);
452
}
453
454
// Check the hosting parameter when the page loads
0 commit comments