allow type hyphen in orgID

This commit is contained in:
miloschwartz
2026-02-17 21:54:55 -08:00
parent e2f78ba476
commit 7ad76f5683

View File

@@ -149,7 +149,6 @@ export default function StepperForm() {
.replace(/\s+/g, "-")
.replace(/[^a-z0-9_-]/g, "")
.replace(/-+/g, "-")
.replace(/^-+|-+$/g, "")
.slice(0, 32);
};