remove unused code

This commit is contained in:
Matt Walsh
2022-12-14 08:31:48 -06:00
parent 4f3fd04c5c
commit 3078ae6ba1
7 changed files with 9192 additions and 9300 deletions

View File

@@ -24,7 +24,7 @@ const cachedImages = [];
const preloadImg = (src) => {
if (cachedImages.includes(src)) return false;
blob(src);
// cachedImages.push(src);
cachedImages.push(src);
return true;
};