this repo has no description
0
fork

Configure Feed

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

Fix media re-rendering due to url object keep being recreated

+4 -1
+4 -1
src/components/compose.jsx
··· 1477 1477 }) { 1478 1478 const supportsEdit = supports('@mastodon/edit-media-attributes'); 1479 1479 const { type, id, file } = attachment; 1480 - const url = file ? URL.createObjectURL(file) : attachment.url; 1480 + const url = useMemo( 1481 + () => (file ? URL.createObjectURL(file) : attachment.url), 1482 + [file, attachment.url], 1483 + ); 1481 1484 console.log({ attachment }); 1482 1485 const [description, setDescription] = useState(attachment.description); 1483 1486 const suffixType = type.split('/')[0];