I'm trying to load an image from cache. It works whenever i switch between different tabs of the website, but when I reload the page, I get the default img icon instead of the actual image. Below is how I'm currently doing it. This is in reactJS
localStorage.setItem('image', URL.createObjectURL(imageFile));
setProfilePic(localStorage.getItem('image'))
What am I doing wrong?