This commit is contained in:
Tomas Dvorak
2025-05-28 23:08:39 +02:00
parent 913f4c93eb
commit 1ba3b1d446
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
// Load and display banner
async function loadBanner() {
try {
const response = await fetch('/api/banner.json');
const response = await fetch('/api/banner');
if (!response.ok) return;
const banner = await response.json();