diff --git a/script.js b/script.js index fcc6634..4280bb3 100644 --- a/script.js +++ b/script.js @@ -70,6 +70,5 @@ async function getNetworkGraphJson(){ if (!response.ok) { throw new Error('Network response was not ok'); } - const data = await response.json(); - return data; + return await response.json(); }