diff --git a/assets/section-renderer.js b/assets/section-renderer.js index 9e6a3640b..ac57a81b5 100644 --- a/assets/section-renderer.js +++ b/assets/section-renderer.js @@ -83,7 +83,7 @@ class SectionRenderer { if (cachedHTML) return cachedHTML; } - pendingPromise = fetch(sectionUrl).then((response) => { + pendingPromise = fetch(sectionUrl, { credentials: 'include' }).then((response) => { return response.text(); });