diff --git a/packages/check-in-place-select/src/check-in-place-select.js b/packages/check-in-place-select/src/check-in-place-select.js
index e5416afc0bf27c8072bbc1f276a74e24763766de..662165150d202029711829f9b360963b2d26495b 100644
--- a/packages/check-in-place-select/src/check-in-place-select.js
+++ b/packages/check-in-place-select/src/check-in-place-select.js
@@ -24,7 +24,7 @@ export class CheckInPlaceSelect extends ScopedElementsMixin(AdapterLitElement) {
 
     constructor() {
         super();
-        Object.assign(CheckInPlaceSelect.prototype, errorUtils.backupMixin);
+        Object.assign(CheckInPlaceSelect.prototype, errorUtils.errorMixin);
         this.lang = 'de';
         this.entryPointUrl = '';
         this.jsonld = null;
diff --git a/packages/common/error.js b/packages/common/error.js
index 9ed2522f786c7b3e2cd73fd043f7ea358ed39de5..afb841c9675a9baf958bf720f5c3a1400a6f15a8 100644
--- a/packages/common/error.js
+++ b/packages/common/error.js
@@ -116,7 +116,7 @@ export const stripHTML = (string) => {
 /**
  * We need this mixin so we can use this.sendSetPropertyEvent to post analytics events
  */
-export const backupMixin = {
+export const errorMixin = {
     /**
      * Error handling for XHR errors
      *
diff --git a/packages/person-select/src/person-select.js b/packages/person-select/src/person-select.js
index 641942c54550c553d9f38a1ac73b59c383cea5ad..3b2945632113f1cef21c05fc3ec93646f0ad9148 100644
--- a/packages/person-select/src/person-select.js
+++ b/packages/person-select/src/person-select.js
@@ -27,7 +27,7 @@ export class PersonSelect extends ScopedElementsMixin(AdapterLitElement) {
 
     constructor() {
         super();
-        Object.assign(PersonSelect.prototype, errorUtils.backupMixin);
+        Object.assign(PersonSelect.prototype, errorUtils.errorMixin);
         this.auth = {};
         this.lang = 'de';
         this.entryPointUrl = '';