Skip to content

Commit

Permalink
test change
Browse files Browse the repository at this point in the history
  • Loading branch information
Miningmark committed Dec 25, 2024
1 parent 86b319b commit ee13edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/api/contactRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default async function handler(req, res) {
errors.push({ field: "subject", message: subjectValidation.description });

// Nachricht Validierung
const messageValidation = validateString(message, "Nachricht", 50, 2500, true);
const messageValidation = validateString(message, "Nachricht", 5, 2500, true);
if (!messageValidation.check)
errors.push({ field: "message", message: messageValidation.description });

Expand Down

0 comments on commit ee13edd

Please sign in to comment.