diff --git a/app/script.js b/app/script.js index 1794ab6..f1bc803 100644 --- a/app/script.js +++ b/app/script.js @@ -309,7 +309,7 @@ new Vue({ const getImages = async () => { const response = await axios.get(`${baseUrl}/album`) - this.image = baseUrl + response.data.images[Math.floor(Math.random() * response.data.images.length)] + this.image = response.data.images[Math.floor(Math.random() * response.data.images.length)] } const transistionStepSpeed = 50;