Closed
Description
p5.js version
v1.10.0
What is your operating system?
Mac OS
Web browser and version
128.0.6613.137
Actual Behavior
The loadImage function is unable to fetch medium and large images immediately after uploading them to the project's files, with delays of several hours. Smaller images load successfully right away.

Expected Behavior
Ideally, the loadImage function would work for any image immediately after it is uploaded to the web editor, regardless of size.
Steps to reproduce
Snippet:
let photo;
function preload(){
photo = loadImage("photo.jpg");
}
function setup() {
createCanvas(400, 400);
image(photo,0,0);
}
function draw() {
}