this repo has no description
0
fork

Configure Feed

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

Fix media description not recognized if programmatically entered

+4 -1
+4 -1
src/components/compose.jsx
··· 1711 1711 onDescriptionChange, 1712 1712 250, 1713 1713 ); 1714 + useEffect(() => { 1715 + debouncedOnDescriptionChange(description); 1716 + }, [description, debouncedOnDescriptionChange]); 1714 1717 1715 1718 const [showModal, setShowModal] = useState(false); 1716 1719 const textareaRef = useRef(null); ··· 1759 1762 onInput={(e) => { 1760 1763 const { value } = e.target; 1761 1764 setDescription(value); 1762 - debouncedOnDescriptionChange(value); 1765 + // debouncedOnDescriptionChange(value); 1763 1766 }} 1764 1767 ></textarea> 1765 1768 )}