Fehler gefixt die beim Testen aufgefallen sind.

This commit is contained in:
Moritz Utcke
2025-02-17 11:24:07 +07:00
parent 74f05d404c
commit 5f8d30a5a3
17 changed files with 116 additions and 103 deletions

View File

@@ -7,7 +7,7 @@ import { z } from "zod";
export const PUT = defineApiRoute({
input: z.object({
email: z.string().email(),
passwort: z.string().min(6),
passwort: z.string().min(8),
vorname: z.string(),
name: z.string()
}),

View File

@@ -76,5 +76,5 @@ if (uid) {
---
<AusweisLayout title="Verbrauchsausweis erstellen">
<VerbrauchsausweisWohnenModule client:load {ausweis} {objekt} {aufnahme} {bilder} />
<VerbrauchsausweisWohnenModule client:only {ausweis} {objekt} {aufnahme} {bilder} />
</AusweisLayout>