From 3649cedabedc57f1f8a28eac968aa5c53f5cddce Mon Sep 17 00:00:00 2001 From: oliver Date: Mon, 22 Jun 2026 18:46:40 -0300 Subject: [PATCH] Update app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 52dbc09..1ba5989 100644 --- a/app.js +++ b/app.js @@ -1387,7 +1387,7 @@ async function loadAffiliateLinks() { if (!body) return; body.innerHTML = '
'; try { - const res = await fetch(AFFILIATE_LINKS_URL); + const res = await apiFetch(AFFILIATE_LINKS_URL); if (!res.ok) throw new Error(`HTTP ${res.status}`); const data = await res.json(); dbg("\u2190 Affiliate links", data);