Open
Description
We think it would be useful to have access to the last 10 images that have been pasted from the clipboard. So I'm figuring that after successfully pasting an image we can store in the local storage. @mateusabelli gave this suggestion:
Hello @ekqt I've never done this before, but I think that you could convert the image to Base64 string and store them in local storage. This way the image is available only on the users browser cache and the app can consume them by accessing local storage and converting the Base64 string back to an image. I hope this helps!