fix frontend linting errors

This commit is contained in:
sugar 2025-01-16 20:40:28 +01:00
parent 33aef80b29
commit 94b3fa5ba3
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,
);
}
}