Skip to content

Commit

Permalink
fix export error
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianscheit committed Apr 26, 2024
1 parent 823a8d6 commit e4e224c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1>WEB JSON viewer</h1>
let result;
const statusText = document.getElementById('status').appendChild(document.createTextNode(''));

export const setStatus = async (v) => {
const setStatus = async (v) => {
console.log(v);
statusText.nodeValue = v;
await new Promise((resolve) => setTimeout(resolve, 20))
Expand Down

0 comments on commit e4e224c

Please sign in to comment.