* fix padding in debug view

* remove latin character regex from wizard step 1 validation
This commit is contained in:
Josh Hawkins
2025-10-15 06:29:49 -05:00
committed by GitHub
parent b02d45d3cb
commit 3c8ef0c71c
2 changed files with 1 additions and 5 deletions

View File

@@ -80,10 +80,6 @@ export default function Step1NameCamera({
.string()
.min(1, t("cameraWizard.step1.errors.nameRequired"))
.max(64, t("cameraWizard.step1.errors.nameLength"))
.regex(
/^[a-zA-Z0-9\s_-]+$/,
t("cameraWizard.step1.errors.invalidCharacters"),
)
.refine(
(value) => !existingCameraNames.includes(value),
t("cameraWizard.step1.errors.nameExists"),