From 7671d06762c929bc2890a31e5dc392f8a30065c6 Mon Sep 17 00:00:00 2001 From: holke <103380539+holkexyz@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:02:04 +0200 Subject: [PATCH] increase character limit of hypercert title to 70 (#1300) --- frontend/components/hypercert-create.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/hypercert-create.tsx b/frontend/components/hypercert-create.tsx index 98b37b6a..854d076f 100644 --- a/frontend/components/hypercert-create.tsx +++ b/frontend/components/hypercert-create.tsx @@ -27,7 +27,7 @@ import useCheckWriteable from "../hooks/checkWriteable"; const FORM_SELECTOR = "currentForm"; const IMAGE_SELECTOR = "hypercertimage"; export const NAME_MIN_LENGTH = 2; -export const NAME_MAX_LENGTH = 50; +export const NAME_MAX_LENGTH = 70; export const DESCRIPTION_MIN_LENGTH = 20; export const DESCRIPTION_MAX_LENGTH = 1500;