this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Better fix

+3 -1
+3 -1
src/components/compose-textarea.jsx
··· 108 108 if (textExpanderRef.current) { 109 109 const { height } = textarea.getBoundingClientRect(); 110 110 // textExpanderRef.current.style.height = height + 'px'; 111 - textExpanderRef.current.setStyle({ height: height + 'px' }); 111 + if (height) { 112 + textExpanderRef.current.setStyle({ minHeight: height + 'px' }); 113 + } 112 114 } 113 115 }); 114 116 resizeObserver.observe(textarea);