frontend: lint and format

This commit is contained in:
2026-02-28 13:47:46 +01:00
parent 45fa841f80
commit 8c9da868f4
7 changed files with 29 additions and 39 deletions

View File

@@ -12,7 +12,7 @@ export const useItemMap = () => {
watch(
items,
(newItems) => {
newItems => {
if (Array.isArray(newItems)) {
const map = new Map<number, Item>()
for (const item of newItems) {
@@ -27,4 +27,4 @@ export const useItemMap = () => {
)
return { itemMap }
}
}