[web] Remove leftover console log (#1325)

This commit is contained in:
Manav Rathi 2024-04-05 11:35:30 +05:30 committed by GitHub
commit 360aa2903f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,7 +16,6 @@ Comlink.expose(DedicatedConvertWorker, self);
* Both the input and output are blobs.
*/
export const convertHEICToJPEG = async (heicBlob: Blob): Promise<Blob> => {
console.log("test")
const filedata = await getUint8ArrayView(heicBlob);
const result = await HeicConvert({ buffer: filedata, format: "JPEG" });
const convertedFileData = new Uint8Array(result);