From bec8d7e3e8b942e343fca69cd753687708141ef7 Mon Sep 17 00:00:00 2001 From: unclecode Date: Sun, 17 Mar 2024 14:11:32 +0800 Subject: [PATCH] Update index.html: - Fixed a minor syntax issue --- frontend/pages/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);