diff --git a/front_end/src/app/(main)/questions/components/notebook_form.tsx b/front_end/src/app/(main)/questions/components/notebook_form.tsx index dd083d515a..9d3993ccf6 100644 --- a/front_end/src/app/(main)/questions/components/notebook_form.tsx +++ b/front_end/src/app/(main)/questions/components/notebook_form.tsx @@ -54,8 +54,8 @@ const createNotebookSchema = (t: ReturnType) => { .min(4, { message: t("errorMinLength", { field: "String", minLength: 4 }), }) - .max(60, { - message: t("errorMaxLength", { field: "String", maxLength: 60 }), + .max(80, { + message: t("errorMaxLength", { field: "String", maxLength: 80 }), }), default_project: z.number(), markdown: z.string().min(1, {