fix: fixing typo on length

This commit is contained in:
Chubby Granny Chaser
2025-05-30 14:14:39 +01:00
parent 4d950b30fb
commit 046debffa0
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ export function CloudSyncRenameArtifactModal({
label: yup
.string()
.required(t("required_field"))
.max(255, t("max_length_field", { lenght: 255 })),
.max(255, t("max_length_field", { length: 255 })),
});
const { getGameArtifacts } = useContext(cloudSyncContext);