diff --git a/src/components/PublishLibrary.tsx b/src/components/PublishLibrary.tsx index feea54df..f88e06ff 100644 --- a/src/components/PublishLibrary.tsx +++ b/src/components/PublishLibrary.tsx @@ -120,9 +120,6 @@ const PublishLibrary = ({ if (!libItem.name) { error = t("publishDialog.errors.required"); isError = true; - } else if (!/^[a-zA-Z\s]+$/i.test(libItem.name)) { - error = t("publishDialog.errors.letter&Spaces"); - isError = true; } erroredLibItems.push({ ...libItem, error }); }); @@ -381,6 +378,8 @@ const PublishLibrary = ({