Skip to content

Commit 6e77c1f

Browse files
committed
feat: relation to issue #10
1 parent ec9a643 commit 6e77c1f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/components/input/TextArea.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ const TextArea = ({
6565
);
6666

6767
let val = fixControlledValue(value) as string;
68-
// Max length value
6968
const hasMaxLength = Number(maxLength) > 0;
7069
val = hasMaxLength ? [...val].slice(0, maxLength).join('') : val;
7170
// Only show text area wrapper when needed

0 commit comments

Comments
 (0)