Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zkPorpoise committed Feb 27, 2024
1 parent 2506c3e commit 2dd6ab8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions my-responses.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
return true;
}

function onload() {
async function onload() {
const userFound = retrievePublicKey();
if (userFound) {
const tableContainer = document.getElementById('tableContainer');
const tableHTML = `<table><thead><tr><th>Survey Root</th><th>Survey Selection</th><th>Timestamp</th></tr></thead><tbody>${generateTableRows()}</tbody></table>`;
const tableHTML = `<table><thead><tr><th>Survey Root</th><th>Survey Selection</th><th>Timestamp</th></tr></thead><tbody>${await generateTableRows()}</tbody></table>`;
tableContainer.innerHTML = tableHTML;
}
}
Expand Down

0 comments on commit 2dd6ab8

Please sign in to comment.