lint and prettier

This commit is contained in:
2025-10-11 23:05:00 +02:00
parent 4bf4c24bd9
commit 0d04d827c2
10 changed files with 99 additions and 84 deletions

View File

@@ -3,14 +3,17 @@
<h1>{{ error?.statusCode }}</h1>
<p>{{ error?.message }}</p>
<NuxtLink to="/">Go back home</NuxtLink>
<NuxtLink to="https://github.com/C9Glax/tranga-website/issues/new"><Icon name="i-lucide-github" />Report this issue</NuxtLink>
<NuxtLink to="https://github.com/C9Glax/tranga-website/issues/new"
><Icon name="i-lucide-github" />Report this issue</NuxtLink
>
</div>
</template>
<script setup lang="ts">
import type { NuxtError } from '#app'
import type { NuxtError } from '#app';
defineProps({
// eslint-disable-next-line vue/require-default-prop
error: Object as () => NuxtError,
})
</script>
});
</script>