diff --git a/packages/validation/src/user.ts b/packages/validation/src/user.ts index b8d78e8ee..16bc593a0 100644 --- a/packages/validation/src/user.ts +++ b/packages/validation/src/user.ts @@ -16,7 +16,7 @@ export const passwordRequirements = [ { check: regexCheck(/[a-z]/), value: "lowercase" }, { check: regexCheck(/[A-Z]/), value: "uppercase" }, { check: regexCheck(/\d/), value: "number" }, - { check: regexCheck(/[$&+,:;=?@#|'<>.^*()%!-]/), value: "special" }, + { check: regexCheck(/[$&+,:;=?@#|'<>.^*()%!\-~`"_/\\[\]{}]/), value: "special" }, ] satisfies { check: (value: string) => boolean; value: keyof TranslationObject["user"]["field"]["password"]["requirement"];