@uniai-fe/uds-templates 0.6.11 → 0.6.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-templates",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -284,7 +284,8 @@ const isCctvDebugConsoleEnabled = (): boolean => {
284
284
 
285
285
  return (
286
286
  getDebugQueryOverride(DEBUG_QUERY_KEYS) === true ||
287
- getDebugStorageOverride(DEBUG_STORAGE_KEYS) === true
287
+ getDebugStorageOverride(DEBUG_STORAGE_KEYS) === true ||
288
+ isLocalhostDebugDefaultEnabled()
288
289
  );
289
290
  };
290
291