fix: 🚨 Correct useless template literal

This commit is contained in:
Jesse Wierzbinski 2024-10-03 10:27:41 +02:00
parent 06315e8a81
commit 5e1ec8778c
No known key found for this signature in database

View file

@ -189,7 +189,7 @@ export default apiRoute((app) =>
if (!form[value]) { if (!form[value]) {
errors.details[value].push({ errors.details[value].push({
error: "ERR_BLANK", error: "ERR_BLANK",
description: `can't be blank`, description: "can't be blank",
}); });
} }
} }
@ -291,7 +291,7 @@ export default apiRoute((app) =>
if (!locale) { if (!locale) {
errors.details.locale.push({ errors.details.locale.push({
error: "ERR_BLANK", error: "ERR_BLANK",
description: `can't be blank`, description: "can't be blank",
}); });
} }