We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 699880e commit 33e8a55Copy full SHA for 33e8a55
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