Skip to content

Commit

Permalink
fix std link
Browse files Browse the repository at this point in the history
  • Loading branch information
TodePond committed Jan 25, 2025
1 parent 3eb73fd commit 7f519e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exportButton.addEventListener('click', () => {
});

let stdSource = '';
fetch('/src/std.js').then(async (response) => {
fetch('src/std.js').then(async (response) => {
stdSource = await response.text();
});

Expand Down

0 comments on commit 7f519e6

Please sign in to comment.