Merge branch 'main' into prod

correction de error.vue
This commit is contained in:
Valentin 2024-03-03 23:46:12 +01:00
commit a4d146b678
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;
});