@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.
package/initializers.js CHANGED
@@ -174,7 +174,9 @@ var handle404ErrorResponse = function handle404ErrorResponse(error) {
174
174
  if (status === 404 && show404ErrorPage || status === 403 && show403ErrorPage) {
175
175
  useErrorDisplayStore.setState({
176
176
  showErrorPage: true,
177
- statusCode: status
177
+ statusCode: status,
178
+ failedApiUrl: error.config.url,
179
+ failedApiPath: new URL(error.config.url).pathname
178
180
  });
179
181
  }
180
182
  return error;