@dvrd/dvr-controls 0.0.38 → 0.0.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvrd/dvr-controls",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "Custom web controls",
5
5
  "main": "index.ts",
6
6
  "scripts": {},
@@ -97,13 +97,13 @@ export const sendFetch = (config: FetchOptions, legacySupport: boolean = false):
97
97
  if (config.errorCallback) config.errorCallback(response);
98
98
  else if (config.callback) config.callback({
99
99
  status: 'error',
100
- message: 'Er is iets misgegaan in ons systeem. Probeer het later opnieuw of neem contact met ons op.'
100
+ message: 'Er is iets misgegaan in ons systeem.'
101
101
  });
102
102
  } else {
103
103
  if (config.errorCallback) config.errorCallback(response);
104
104
  else if (config.callback) config.callback({
105
105
  status: 'error',
106
- message: 'Er is iets misgegaan in ons systeem. Probeer het later opnieuw of neem contact met ons op.'
106
+ message: 'Er is iets misgegaan in ons systeem.'
107
107
  });
108
108
  }
109
109
  }