mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 09:50:48 +02:00
changes to prettierrc
This commit is contained in:
@@ -1,12 +1,6 @@
|
||||
<template>
|
||||
<UPageBody class="flex flex-col items-center">
|
||||
<UButton
|
||||
icon="i-lucide-arrow-left"
|
||||
class="w-fit self-start m-20"
|
||||
variant="soft"
|
||||
:to="`/manga/${mangaId}/merge/`"
|
||||
>Back</UButton
|
||||
>
|
||||
<UButton icon="i-lucide-arrow-left" class="w-fit self-start m-20" variant="soft" :to="`/manga/${mangaId}/merge/`">Back</UButton>
|
||||
<div class="flex flex-row justify-evenly items-center">
|
||||
<MangaCard v-if="manga" :manga="manga" :expanded="true" />
|
||||
<USkeleton v-else class="max-w-[600px] w-full h-[350px]" />
|
||||
@@ -24,12 +18,6 @@ const route = useRoute();
|
||||
const targetId = route.params.targetId as string;
|
||||
const mangaId = route.params.mangaId as string;
|
||||
|
||||
const { data: target } = await useApi('/v2/Manga/{MangaId}', {
|
||||
path: { MangaId: targetId },
|
||||
key: FetchKeys.Manga.Id(targetId),
|
||||
});
|
||||
const { data: manga } = await useApi('/v2/Manga/{MangaId}', {
|
||||
path: { MangaId: mangaId },
|
||||
key: FetchKeys.Manga.Id(mangaId),
|
||||
});
|
||||
const { data: target } = await useApi('/v2/Manga/{MangaId}', { path: { MangaId: targetId }, key: FetchKeys.Manga.Id(targetId) });
|
||||
const { data: manga } = await useApi('/v2/Manga/{MangaId}', { path: { MangaId: mangaId }, key: FetchKeys.Manga.Id(mangaId) });
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user