From bb1a898b1a41a02975a68568057233896d17dc34 Mon Sep 17 00:00:00 2001 From: Sh031224 <1cktmdgh2@gmail.com> Date: Mon, 27 May 2024 16:46:56 +0900 Subject: [PATCH] =?UTF-8?q?fix(wds):=20text=20area=20=EC=97=90=EC=84=9C=20?= =?UTF-8?q?maxLength=20=EC=BD=A4=EB=A7=88=EA=B0=80=20=ED=91=9C=EC=8B=9C?= =?UTF-8?q?=EB=90=98=EC=A7=80=20=EC=95=8A=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/wds/src/components/text-area/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wds/src/components/text-area/index.tsx b/packages/wds/src/components/text-area/index.tsx index 30d70db05..e4225c0d1 100644 --- a/packages/wds/src/components/text-area/index.tsx +++ b/packages/wds/src/components/text-area/index.tsx @@ -297,7 +297,7 @@ const TextArea = forwardRef< } sx={maxLengthStyle} > - {length}/ + {length.toLocaleString()}/ {maxLength!.toLocaleString()} )}