feat: boards dnd editor for mobile

This commit is contained in:
2025-08-09 10:13:25 +04:00
parent 5ecdd3d887
commit e3137de46d
11 changed files with 166 additions and 17 deletions

View File

@ -20,7 +20,7 @@ const EnterNameModal = ({
}: ContextModalProps<Props>) => {
const form = useForm<FormType>({
initialValues: {
name: innerProps.defaultValue,
name: innerProps.defaultValue ?? "",
},
validate: {
name: name => !name && "Введите название",