From 3bdc6221188b474262bf1f6724025d1f79a1cbcf Mon Sep 17 00:00:00 2001 From: idolpx Date: Tue, 14 Jun 2022 23:28:57 -0500 Subject: [PATCH] Update app.js --- client/src/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +});