thm-p3-configurator 0.0.173 → 0.0.174
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1044,6 +1044,9 @@ const initializeOrderSession = function initializeOrderSession() {
|
|
|
1044
1044
|
// Check if we're on a single-order page by examining window.location
|
|
1045
1045
|
const storageKey = isPrivateSingleOrder ? _constants__.PRIVATE_SINGLE_ORDER_SESSION_KEY : _constants__.ORDER_SESSION_KEY;
|
|
1046
1046
|
const cachedSession = (0, _helpers__.parseJson)(window.sessionStorage.getItem(storageKey));
|
|
1047
|
+
console.log('is single order page', isPrivateSingleOrder);
|
|
1048
|
+
console.log('cachedSession', cachedSession);
|
|
1049
|
+
console.log('storageKey', storageKey);
|
|
1047
1050
|
if (!cachedSession) {
|
|
1048
1051
|
return INITIAL_ORDER_SESSION_STATE;
|
|
1049
1052
|
}
|