Skip to content

Commit b08d739

Browse files
committed
second js fix
1 parent 565a7a6 commit b08d739

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { marked } from 'marked'
44
// Fetch and render Federations
55
async function loadFederations() {
66
try {
7-
const response = await fetch('/content/federations.json');
7+
const response = await fetch('content/federations.json');
88
const federations = await response.json();
99
const grid = document.getElementById('federations-grid');
1010

@@ -31,7 +31,7 @@ async function loadFederations() {
3131
// Fetch and render Documentation text
3232
async function loadDocumentation() {
3333
try {
34-
const response = await fetch('/content/documentation.md');
34+
const response = await fetch('content/documentation.md');
3535
const text = await response.text();
3636
const docContainer = document.getElementById('doc-text');
3737

0 commit comments

Comments
 (0)