linting, tenant slug -> name

This commit is contained in:
2025-10-29 18:26:59 +01:00
parent b6bcb72165
commit abc0116945
23 changed files with 324 additions and 487 deletions
+6 -8
View File
@@ -4,14 +4,12 @@ export const preventAll = (event) => {
}
try {
event.preventDefault();
} catch (
// eslint-disable-next-line no-empty
error
) {}
} catch (error) {
console.warn('[events] preventDefault failed', error);
}
try {
event.stopPropagation();
} catch (
// eslint-disable-next-line no-empty
error
) {}
} catch (error) {
console.warn('[events] stopPropagation failed', error);
}
};