@vizzly/dashboard 0.15.1-dev-bf37af9c56e45d64667fdf7b5c96aa2a9c2b02e4 → 0.15.1-dev-a5ec7c800259618d61c53cad1cc968c092a22019

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.
@@ -11918,7 +11918,6 @@ function prepareStoredFilters(response, globalFilters, validateFilters, checkApp
11918
11918
  var VIZZLY_LOG_LEVEL_STORED = '__VIZZLY__LOG_LEVEL_STORED';
11919
11919
  var RUNTIME_DEVELOPER_TOOLS = '__VIZZLY_RUNTIME_DEVELOPER_TOOLS';
11920
11920
  var VIZZLY_SERVER_LOG_LEVEL_STORED = '__VIZZLY__SERVER_LOG_LEVEL_STORED';
11921
- var packageJson = /*#__PURE__*/require("../package.json");
11922
11921
  if (typeof window !== 'undefined' && typeof localStorage !== 'undefined') {
11923
11922
  var previousLogLevel = /*#__PURE__*/localStorage.getItem(VIZZLY_LOG_LEVEL_STORED);
11924
11923
  if (previousLogLevel) {
@@ -11926,7 +11925,7 @@ if (typeof window !== 'undefined' && typeof localStorage !== 'undefined') {
11926
11925
  }
11927
11926
  // @ts-ignore
11928
11927
  window.VizzlyDev = {
11929
- version: (packageJson == null ? void 0 : packageJson['version']) || 'dev',
11928
+ version: '0.15.1 (hardcoded)',
11930
11929
  getServerLogLevel: function getServerLogLevel() {
11931
11930
  return localStorage.getItem(VIZZLY_SERVER_LOG_LEVEL_STORED);
11932
11931
  },