@cwa/nuxt-edge 0.0.0-29699738.c20e607 → 0.0.0-29699768.08e95ef

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.
@@ -66,20 +66,7 @@ export default class FetchStatusManager {
66
66
  }
67
67
  const isCurrent = this.fetcherStore.isCurrentFetchingToken(event.token);
68
68
  const fetchStatus = this.fetcherStore.fetches[event.token];
69
- if (fetchStatus?.abort) {
70
- this.resourcesStore.setResourceFetchError({
71
- iri: event.resource,
72
- error: createCwaResourceError(new Error(`Not Saved. Fetching token '${event.token}' has been aborted.`)),
73
- isCurrent
74
- });
75
- return;
76
- }
77
- if (!isCurrent) {
78
- this.resourcesStore.setResourceFetchError({
79
- iri: event.resource,
80
- error: createCwaResourceError(new Error(`Not Saved. Fetching token '${event.token}' is no longer current.`)),
81
- isCurrent
82
- });
69
+ if (fetchStatus?.abort || !isCurrent) {
83
70
  return;
84
71
  }
85
72
  const showErrorPage = this.finishFetchShowError(fetchStatus, event.resource);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cwa/nuxt-edge",
3
- "version": "0.0.0-29699738.c20e607",
3
+ "version": "0.0.0-29699768.08e95ef",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Components Web Apps Nuxt Module. UI for creating component-driven web apps with the API Components Bundle",