Skip to content

Commit d828608

Browse files
committed
Fix link tag in index.html
1 parent bec8d7e commit d828608

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

frontend/pages/index.html

+3-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
99
<title>GroqCall</title>
1010
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" />
11-
<link href="/static/markdown.css" rel="stylesheet" />s
11+
<link href="/static/markdown.css" rel="stylesheet" />
1212
<style>
1313
html,
1414
body {
@@ -42,9 +42,6 @@
4242
</main>
4343
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
4444
<script>
45-
// script.js
46-
47-
// GitHub repository URL
4845
const repoUrl = "https://api.github.com/repos/unclecode/groqcall/contents/README.md";
4946
//const repoUrl = "http://0.0.0.0:8000/static/README.md";
5047

@@ -76,9 +73,9 @@
7673
const readmeContainer = document.getElementById("readme-container");
7774

7875
// Check if README content is already cached
79-
const cachedReadmeContent = null; //localStorage.getItem("readmeContent");
76+
const cachedReadmeContent = localStorage.getItem("readmeContent");
8077

81-
if (cachedReadmeContent) {
78+
if (false && cachedReadmeContent) {
8279
// Use cached content
8380
readmeContainer.innerHTML = markdownToHtml(cachedReadmeContent);
8481
} else {

0 commit comments

Comments
 (0)