frontend for xcvr appview

could it be ordering idk

+1 -1
+1 -1
src/lib/components/Transmitter.svelte
··· 76 76 const convertFileToImageItem = (blob: File) => { 77 77 const blobUrl = URL.createObjectURL(blob); 78 78 const img = document.createElement("img"); 79 + img.src = blobUrl; 79 80 img.onload = () => { 80 81 URL.revokeObjectURL(blobUrl); 81 82 }; 82 - img.src = blobUrl; 83 83 const image: Image = { 84 84 type: "image", 85 85 id: 0,