Set correct API path

This commit is contained in:
2025-12-01 13:30:50 +01:00
parent 8ec4279af5
commit c83d575312

View File

@@ -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}`);
}