Fix inability to paste links

This commit is contained in:
Claire 2025-11-14 17:27:04 +01:00
parent ebc99cd597
commit 96ae996977

View File

@ -29,7 +29,6 @@ const processPasteOrDrop = (transfer, e, dispatch) => {
try {
const url = new URL(data);
dispatch(pasteLinkCompose({ url }));
e.preventDefault();
} catch {
return;
}