style(reply modal): remove comment placeholder, adjust height

This commit is contained in:
plebeius.eth
2024-05-15 15:00:12 +02:00
parent 794c168868
commit 6081f5c7fa
+1 -2
View File
@@ -103,10 +103,9 @@ const ReplyModal = ({ closeModal, parentCid, scrollY }: ReplyModalProps) => {
</span> </span>
<textarea <textarea
cols={48} cols={48}
rows={4} rows={3}
wrap='soft' wrap='soft'
ref={textRef} ref={textRef}
placeholder={_.capitalize(t('comment'))}
onChange={(e) => { onChange={(e) => {
const content = e.target.value.replace(/\n/g, '\n\n'); const content = e.target.value.replace(/\n/g, '\n\n');
setContent.content(content); setContent.content(content);