Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanharikr committed May 29, 2024
1 parent 40efb08 commit 9959f98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/assets/localStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const hydrate = () => {
processParams()
addList()
plausibleIgnoreState()
document.querySelector('#ignore').addEventListener('click', ignoreAll);
document.querySelector('#clear').addEventListener('click', clearAll);
}

const processParams = () => {
Expand Down Expand Up @@ -104,6 +106,4 @@ const addList = () => {
}
}

window.onload = hydrate;
document.querySelector('#ignore').addEventListener('click', ignoreAll);
document.querySelector('#clear').addEventListener('click', clearAll);
window.onload = hydrate;

0 comments on commit 9959f98

Please sign in to comment.