fix invalid datetime error on team create

This commit is contained in:
2025-05-18 21:10:55 +02:00
parent 0ff3b817d8
commit 560bf04b6c
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
interface Props {
id?: string;
type?: 'color' | 'date' | 'tel' | 'text' | 'email';
type?: 'color' | 'date' | 'datetime-local' | 'tel' | 'text' | 'email';
value?: string | null;
label?: string;
required?: boolean;