fix: TS errors, serialize calls, unused imports, pre-commit hook
Build & Deploy / build (push) Successful in 32s
Build & Deploy / docker (push) Successful in 1m42s

This commit is contained in:
Kevin
2026-07-07 20:49:52 +02:00
parent 15d3a13d0a
commit c4cad4f875
16 changed files with 27 additions and 101 deletions
+6
View File
@@ -1,4 +1,10 @@
<script setup lang="ts">
type UIAuthError = {
status: number
code: string
message: string
}
defineProps<{
authError?: UIAuthError
}>()