Skip to content

Commit

Permalink
chore: Typo
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Groß <mail@gross-johannes.de>
  • Loading branch information
jo-gross committed Dec 31, 2024
1 parent 6ef2d82 commit cab807d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/tags/TagUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function updateTags(localTags: string[], setTagValidation: (validation: s
export function validateTag(tag: string, setTagValidation: (validation: string | null) => void) {
const valid = tagRegex.test(tag.toLowerCase());
if (!valid) {
setTagValidation('Der Tag darf nur Kleinbuchstaben, keine Leerzeichen und keine Sonderzeichen enthalten (z.B. "sour")');
setTagValidation('Der Tag darf nur Kleinbuchstaben und Zahlen, keine Leerzeichen und keine Sonderzeichen enthalten (z.B. "sour")');
} else {
setTagValidation(null);
}
Expand Down

0 comments on commit cab807d

Please sign in to comment.