From b3c8161d90d8211318ed530618d9ec0f3da07b51 Mon Sep 17 00:00:00 2001 From: Valentin Date: Sun, 3 Mar 2024 23:45:27 +0100 Subject: [PATCH] correction du nom de la collection dans error.vue --- error.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error.vue b/error.vue index 7dd9aa8..4996d29 100644 --- a/error.vue +++ b/error.vue @@ -22,7 +22,7 @@ const global = ref([]); onMounted(async () => { - const items = await getItems({ collection: "Global" }); + const items = await getItems({ collection: "global" }); global.value = items; });