Skip to content

Commit

Permalink
fix (#10)
Browse files Browse the repository at this point in the history
* fix

* 2024.5.7

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
rohanharikr and github-actions[bot] authored May 29, 2024
1 parent 40efb08 commit 8d1904b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "src",
"private": true,
"version": "2024.5.6",
"version": "2024.5.7",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
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 8d1904b

Please sign in to comment.