Skip to content

Commit 4f0fc20

Browse files
committed
(rpt2 plugin) Error: /home/runner/work/react-comments-section/react-comments-section/src/components/InputField/RegularInput.tsx(65,11): semantic error TS2322: Type 'string' is not assignable to type 'number | undefined'.
It has been fixed
1 parent f3c72e0 commit 4f0fc20

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/InputField/RegularInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ const RegularInput = ({
6262
</div>
6363
{globalStore.removeEmoji ? (
6464
<textarea
65-
rows="6"
66-
cols="40"
65+
rows={6}
66+
cols={40}
6767
className='postComment'
6868
style={
6969
mode === 'replyMode' || mode === 'editMode'

0 commit comments

Comments
 (0)