From c83d57531222c26702b3284d10532765340f5bca Mon Sep 17 00:00:00 2001 From: michael1986 Date: Mon, 1 Dec 2025 13:30:50 +0100 Subject: [PATCH] Set correct API path --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1364a63..a67d3cf 100644 --- a/index.html +++ b/index.html @@ -64,7 +64,7 @@ window.addEventListener("load", async function () { // Fetch auction data from API let locations; try { - const response = await fetch('http://localhost:5000/v2/auction/NL'); + const response = await fetch('https://aupi.appmodel.nl/v2/auction/NL'); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); }