[web] Remove leftover console log

This commit is contained in:
Manav Rathi 2024-04-05 11:33:57 +05:30
parent 687efe506a
commit 0d48284b4f
No known key found for this signature in database

View file

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