First Commit

This commit is contained in:
Yûki VACHOT 2024-05-12 02:38:12 +02:00
parent 2d00e59043
commit 1e37577b17

View file

@ -70,6 +70,5 @@ async function getNetworkGraphJson(){
if (!response.ok) { if (!response.ok) {
throw new Error('Network response was not ok'); throw new Error('Network response was not ok');
} }
const data = await response.json(); return await response.json();
return data;
} }