From 23bb209f2e62f14f1494a877147196b35500aec2 Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Mon, 19 Feb 2024 16:22:22 -0500 Subject: [PATCH] fix: new metadata url --- js/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.ts b/js/main.ts index e81f0ba..6bef79d 100644 --- a/js/main.ts +++ b/js/main.ts @@ -66,7 +66,7 @@ let zonage = { } window.addEventListener("load", async () => { - const response = await fetch(`${ALEXI_URL}/zonage.json`); + const response = await fetch(`${ALEXI_URL}/index.json`); if (response.ok) { zonage = await response.json(); }