diff --git a/client/src/js/app.js b/client/src/js/app.js index b1c1a06..9042004 100644 --- a/client/src/js/app.js +++ b/client/src/js/app.js @@ -1,4 +1,4 @@ -const GRAPHQL_URL = 'http://localhost:3000/'; +const GRAPHQL_URL = 'https://csdb.idolpx.com/'; async function getRelease(id) { const response = await fetch(GRAPHQL_URL, { @@ -126,4 +126,4 @@ getRelease(1).then((release) => { title.textContent = release.Name; const screenshot = document.querySelector('img'); screenshot.src = release.ScreenShot; -}); \ No newline at end of file +});