diff --git a/frontend/pages/index.html b/frontend/pages/index.html index 1a023b8..b18d20e 100644 --- a/frontend/pages/index.html +++ b/frontend/pages/index.html @@ -58,9 +58,9 @@ async function fetchReadmeContent() { try { const response = await fetch(repoUrl); - + //const data = await response.text() + //const readmeContent = data + //return readmeContent; const data = await response.json(); const readmeContent = atob(data.content);