diff --git a/static/js/store-query-parameter.js b/static/js/store-query-parameter.js index 96fddad1..3dc10ffc 100644 --- a/static/js/store-query-parameter.js +++ b/static/js/store-query-parameter.js @@ -3,14 +3,11 @@ // The default docusaurus behavior only stores the sdk preference in local storage if the user clicked on a specific tab, // it didn't store the query parameters in local storage. So the query parameters would get lost on subsequent clicks. const storeSelectedSDK = function () { - console.info("Running sdk language parameter recognition script: " + window.location.search); const urlParams = new URLSearchParams(window.location.search); const sdkParam = urlParams.get('sdk'); - // Check if the 'sdk' parameter is present in the URL if (sdkParam !== null) { // Store the 'sdk' parameter value in the local storage - console.info("Setting sdk local storage parameter to: " + sdkParam); localStorage.setItem('docusaurus.tab.sdk', sdkParam); } }