fix: last eslint errors

This commit is contained in:
Huskydog9988
2025-04-15 21:43:27 -04:00
parent 8e109dd562
commit d361e01eef
14 changed files with 42 additions and 49 deletions

View File

@ -152,10 +152,6 @@ import { ref, type Component } from "vue";
import {
Dialog,
DialogPanel,
Menu,
MenuButton,
MenuItem,
MenuItems,
TransitionChild,
TransitionRoot,
} from "@headlessui/vue";
@ -163,10 +159,7 @@ import {
Bars3Icon,
ServerStackIcon,
HomeIcon,
LockClosedIcon,
Cog6ToothIcon,
FlagIcon,
BellIcon,
DocumentIcon,
UserGroupIcon,
} from "@heroicons/vue/24/outline";
@ -209,10 +202,10 @@ const navigation: Array<NavigationItem & { icon: Component }> = [
},
];
const notifications = useNotifications();
const unreadNotifications = computed(() =>
notifications.value.filter((e) => !e.read)
);
// const notifications = useNotifications();
// const unreadNotifications = computed(() =>
// notifications.value.filter((e) => !e.read)
// );
const currentNavigationIndex = useCurrentNavigationIndex(navigation);