Retrieve uploaded images back into Uppy for editing

Is there a way to reuse the interface in order to edit already uploaded images? If a users images get uploaded to S3, then they notice an issue with the image, I would like to be able for them to easily edit the images with the built-in editor. Vanilla JS

I just solved this. I proxy the image through my own server in order to avoid cors issues and use uppy.addFile() to add it. Remember to use the option ‘autoOpenFileEditor’ with the Dashboard.

      const response = await fetch(`endpoint/for/my/file`);
      const blob = await response.blob();
      uppy.addFile({
        name: editImage.name,
        type: blob.type,
        data: blob,
      });