mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
made this a for loop idk why i didnt bother before
This commit is contained in:
parent
e200dc7d47
commit
dfe2db20df
1 changed files with 4 additions and 11 deletions
|
@ -31,17 +31,10 @@ export const handleMosaic = async (
|
|||
const baseUrl = `https://${selectedDomain}/`;
|
||||
let path = '';
|
||||
|
||||
if (mosaicMedia[0]) {
|
||||
path += `/${mosaicMedia[0]}`;
|
||||
for (let i = 0; i++; i < 3) {
|
||||
if (mosaicMedia[i]) {
|
||||
path += `/${mosaicMedia[i]}`;
|
||||
}
|
||||
if (mosaicMedia[1]) {
|
||||
path += `/${mosaicMedia[1]}`;
|
||||
}
|
||||
if (mosaicMedia[2]) {
|
||||
path += `/${mosaicMedia[2]}`;
|
||||
}
|
||||
if (mosaicMedia[3]) {
|
||||
path += `/${mosaicMedia[3]}`;
|
||||
}
|
||||
|
||||
const size = calcSize(mediaList.map(i => ({ width: i.width, height: i.height } as Size)));
|
||||
|
|
Loading…
Add table
Reference in a new issue