correction du nom de la collection dans error.vue

This commit is contained in:
Valentin 2024-03-03 23:45:27 +01:00
parent ca07159f1c
commit b3c8161d90
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
const global = ref([]);
onMounted(async () => {
const items = await getItems({ collection: "Global" });
const items = await getItems({ collection: "global" });
global.value = items;
});