Fix: Update slug validation error message

This commit is contained in:
gpt-engineer-app[bot]
2025-10-17 16:55:59 +00:00
parent f7424493e4
commit 5fe16e51b4

View File

@@ -316,7 +316,7 @@ export async function validateEntityData(
if (!isSlugUnique) {
blockingErrors.push({
field: 'slug',
message: 'This slug is already in use. Please choose a unique slug',
message: 'This slug is already in use. Manually check if this entity already exists, and reject if so. Otherwise, escalate to an admin for manual editing of the slug.',
severity: 'blocking',
});
}