diff --git a/build/index.js b/build/index.js index 55b8f4c..4ea3fa5 100644 --- a/build/index.js +++ b/build/index.js @@ -32,7 +32,6 @@ let speed = parseFloat(urlParameter.get("speed") ?? "-1") ?? -1; if (performance.navigation?.type == window.performance.navigation?.TYPE_RELOAD || speed < 0) { speed = 1; } -updateURLParameter('speed', speed.toString()); console.log('Speed', speed); /** * The time that has passed since the start. (in seconds) diff --git a/src/index.ts b/src/index.ts index e696394..e247c2e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -37,7 +37,6 @@ let speed: number = parseFloat(urlParameter.get("speed") ?? "-1") ?? -1; if (performance.navigation?.type == window.performance.navigation?.TYPE_RELOAD || speed < 0) { speed = 1; } -updateURLParameter('speed', speed.toString()); console.log('Speed', speed); /**