@bigbinary/neeto-commons-frontend 2.1.3 → 2.1.5

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.
@@ -8,7 +8,7 @@ const defineCypressConfig = (overrides = {}) => {
8
8
  defaultCommandTimeout: 8000,
9
9
  requestTimeout: 5000,
10
10
  pageLoadTimeout: 30000,
11
- responseTimeout: 20000,
11
+ responseTimeout: 30000,
12
12
  viewportWidth: 1440,
13
13
  viewportHeight: 960,
14
14
  chromeWebSecurity: false,
@@ -184,7 +184,9 @@ var handle404ErrorResponse = function handle404ErrorResponse(error) {
184
184
  if (status === 404 && show404ErrorPage || status === 403 && show403ErrorPage) {
185
185
  reactUtils.useErrorDisplayStore.setState({
186
186
  showErrorPage: true,
187
- statusCode: status
187
+ statusCode: status,
188
+ failedApiUrl: error.config.url,
189
+ failedApiPath: new URL(error.config.url).pathname
188
190
  });
189
191
  }
190
192
  return error;