Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿

Rename variable splitedUrl (#5631)

authored by yoginth.com and committed by

GitHub 5d18ab78 9b32dd00

+2 -2
+2 -2
packages/helpers/imageKit.ts
··· 6 6 } 7 7 8 8 if (url.includes(LENS_MEDIA_SNAPSHOT_URL)) { 9 - const splitedUrl = url.split("/"); 10 - const path = splitedUrl[splitedUrl.length - 1]; 9 + const splitUrl = url.split("/"); 10 + const path = splitUrl[splitUrl.length - 1]; 11 11 12 12 return name ? `${LENS_MEDIA_SNAPSHOT_URL}/${name}/${path}` : url; 13 13 }