@next-core/brick-kit 2.178.2 → 2.178.3

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.
@@ -11951,6 +11951,11 @@
11951
11951
  } else if (isHttpAbortError(error)) {
11952
11952
  return;
11953
11953
  } else {
11954
+ var noAuthGuardLoginPath = getRuntime().getMiscSettings().noAuthGuardLoginPath;
11955
+ if (isUnauthenticatedError(error) && noAuthGuardLoginPath) {
11956
+ history.replace(noAuthGuardLoginPath);
11957
+ return;
11958
+ }
11954
11959
  yield _this3.kernel.layoutBootstrap(layoutType);
11955
11960
  var brickPageError = _this3.kernel.presetBricks.pageError;
11956
11961
  yield _this3.kernel.loadDynamicBricks([brickPageError]);