Probably final version of FloatInputTextField

This commit is contained in:
2025-03-24 12:31:07 +01:00
parent 7ac279da8e
commit 0c48df239e
2 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ import * as zod from 'zod';
const zodSchema = zod.object({
username: zod.string().min(1, { message: 'This is required' }),
password: zod.string().min(3),
password: zod.string().min(3, { message: 'Password is required longer than 3' }),
});
const schema = toTypedSchema(zodSchema);