Ankit Patel

Results 1 comments of Ankit Patel

@yashnarkhedkar @tynoschuck Inside utils/index.js update the downloadImage function ```js export async function downloadImage(_id, photo) { const securePhotoUrl = photo.replace('http://', 'https://'); const imageBlob = await fetch(securePhotoUrl) .then((response) => response.arrayBuffer()) .then((buffer) =>...