Update endpoints

This commit is contained in:
2025-10-14 10:34:28 +02:00
parent f88f2698ec
commit f94bc3676c
4 changed files with 7 additions and 7 deletions

View File

@@ -50,5 +50,5 @@ export interface ChaptersListProps {
}
const props = defineProps<ChaptersListProps>();
const { data: chapters } = await useApi('/v2/Manga/{MangaId}/Chapters', { path: { MangaId: props.mangaId }, key: FetchKeys.Chapters.All });
const { data: chapters } = await useApi('/v2/Chapters/{MangaId}', { path: { MangaId: props.mangaId }, key: FetchKeys.Chapters.All });
</script>