Fix: /api/-Prefix in gruender.js+settings.js entfernt; Grant-Fehler sichtbar, SW by-v553

This commit is contained in:
rene 2026-04-30 14:45:16 +02:00
parent 2f1dfd481c
commit c2a5fbba7d
5 changed files with 6 additions and 5 deletions

View file

@ -39,7 +39,7 @@ window.Page_gruender = (() => {
async function _load() {
const el = _container.querySelector('#grnd-content');
try {
const d = await API.get('/api/partner/founders/stats');
const d = await API.get('/partner/founders/stats');
if (!d || typeof d.total === 'undefined') throw new Error('Ungültige Antwort vom Server.');
el.innerHTML = _renderStats(d);
} catch (e) {