Skip to content

Commit

Permalink
Fix URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
freddycoppa committed Jul 19, 2024
1 parent 5b3e37c commit de08a26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lambda</title>
<link rel="icon" href="/images/favicon.ico">
<link rel="icon" href="./images/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion load-formulas.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fetch(new URL('formula-library.json', window.location.origin))
fetch(new './formula-library.json')
.then(res => res.json())
.then(async data => {
for (const [ name, exprString ] of data)
Expand Down

0 comments on commit de08a26

Please sign in to comment.