chore: prettier pass

This commit is contained in:
Huskydog9988
2025-04-15 21:46:34 -04:00
parent bc5ab53b50
commit 297bda6e97
62 changed files with 247 additions and 236 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ const min = computed(() => Math.max(props.min ?? 8, props.items.length));
const games: Ref<Array<SerializeObject<Game> | undefined>> = computed(() =>
Array(min.value)
.fill(0)
.map((_, i) => props.items[i])
.map((_, i) => props.items[i]),
);
const singlePage = ref(2);