From e669864b4a9d35dac4a12c29e37644a1e1efdb43 Mon Sep 17 00:00:00 2001 From: azuki774s Date: Tue, 13 Aug 2024 22:38:07 +0900 Subject: [PATCH] fix endpoint record --- components/History.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/History.vue b/components/History.vue index 02cb287..0acb989 100644 --- a/components/History.vue +++ b/components/History.vue @@ -5,7 +5,7 @@ const recordList = ref() const asyncData = await useAsyncData( `history`, (): Promise => { - const url = config.public.mawinterApi + "/v2/records"; + const url = config.public.mawinterApi + "/v2/record"; const response = $fetch(url); return response; }