diff --git a/web/eslint.config.mjs b/web/eslint.config.mjs index d40b444bd..6d7426b95 100644 --- a/web/eslint.config.mjs +++ b/web/eslint.config.mjs @@ -144,6 +144,7 @@ export default [ rules: { ...commonRules, ...vueRules, + 'no-undef': 'off', // Allow TypeScript to handle global variable validation (fixes auto-import false positives) }, }, // Ignores { diff --git a/web/src/components/Notifications/CriticalNotifications.standalone.vue b/web/src/components/Notifications/CriticalNotifications.standalone.vue index 45cddda1d..8fcf01405 100644 --- a/web/src/components/Notifications/CriticalNotifications.standalone.vue +++ b/web/src/components/Notifications/CriticalNotifications.standalone.vue @@ -1,7 +1,6 @@