fix frontend linting errors

This commit is contained in:
sugar 2025-01-16 20:40:28 +01:00
parent 56dcf2c956
commit 453bece184
2 changed files with 6 additions and 6 deletions

View file

@ -46,7 +46,7 @@ const pagination = {
function deleted(id: string) {
if (paginationComponent.value) {
paginationComponent.value.items = paginationComponent.value.items.filter(
(item: any) => item.id !== id
(item: any) => item.id !== id,
);
}
}

View file

@ -490,7 +490,7 @@ const routes: RouteDef[] = [{
path: '/',
component: page(() => import('@/pages/_empty_.vue')),
}],
},{
}, {
path: '/my/notifications',
component: page(() => import('@/pages/notifications.vue')),
loginRequired: true,