fixes validation text

This commit is contained in:
mikesealey 2025-03-07 14:46:52 +00:00
parent 70b793df3b
commit 991b478287
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
const validateDescription = description => { const validateDescription = description => {
if (!description?.length) { if (!description?.length) {
return "Please enter a name" return "Please enter a description"
} }
return null return null
} }