This commit is contained in:
Tomas Dvorak
2025-10-25 16:33:53 +02:00
parent 857e6f007d
commit 3d621e2187
9 changed files with 238 additions and 121 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ const Footer: React.FC = () => {
} catch {}
// Fetch sponsors
try {
const sponsorsRes = await fetch(`${API_URL}/public/sponsors`);
const sponsorsRes = await fetch(`${API_URL}/sponsors`);
if (sponsorsRes.ok) {
const data = await sponsorsRes.json();
if (!cancelled && Array.isArray(data)) {