Width != height for cube map

Getting this error when i try to do a skybox
image

function addSkybox() {

let texture_front = textureLoader.load(

'../textures/skybox/teste2/arid2_ft.jpg'

)

let texture_back = textureLoader.load(

'../textures/skybox/teste2/arid2_bk.jpg'

)

let texture_left = textureLoader.load(

'../textures/skybox/teste2/arid2_lf.jpg'

)

let texture_right = textureLoader.load(

'../textures/skybox/teste2/arid2_rt.jpg'

)

let texture_top = textureLoader.load(’…/textures/skybox/teste2/arid2_up.jpg’)

let texture_bottom = textureLoader.load(

'../textures/skybox/teste2/arid2_dn.jpg'

)

let materialArray = []

materialArray.push(

new THREE.MeshBasicMaterial({ map: texture_front, side: THREE.DoubleSide })

)

materialArray.push(

new THREE.MeshBasicMaterial({ map: texture_back, side: THREE.DoubleSide })

)

materialArray.push(

new THREE.MeshBasicMaterial({ map: texture_left, side: THREE.DoubleSide })

)

materialArray.push(

new THREE.MeshBasicMaterial({ map: texture_right, side: THREE.DoubleSide })

)

materialArray.push(

new THREE.MeshBasicMaterial({ map: texture_top, side: THREE.DoubleSide })

)

materialArray.push(

new THREE.MeshBasicMaterial({ map: texture_bottom, side: THREE.DoubleSide })

)

let SkyboxGeo = new THREE.BoxGeometry(10000, 10000, 10000)

let skybox = new THREE.Mesh(SkyboxGeo, materialArray)

scene.add(skybox)

}

Do you mind sharing your skybox textures in this thread?