From cfca87e9441ccde05b90d05c3e8c7e4550f91f95 Mon Sep 17 00:00:00 2001 From: Stan Goldin Date: Sun, 22 Dec 2024 14:38:22 +0200 Subject: [PATCH] fix viewr --- view/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/index.html b/view/index.html index 5de1db8..d417d5b 100644 --- a/view/index.html +++ b/view/index.html @@ -21,7 +21,7 @@

JSON Viewer

function fetchJSON() { const chainId = document.getElementById("chainIdInput").value; - const url = `dist/${chainId}.json`; + const url = `${chainId}.json`; fetch(url) .then(response => {