Skip to content

Commit

Permalink
remove edge case check
Browse files Browse the repository at this point in the history
  • Loading branch information
okwme committed Sep 11, 2024
1 parent 16d8291 commit 89188b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/index.html

Large diffs are not rendered by default.

19 changes: 9 additions & 10 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,15 @@
import './selection.js'
</script>
<script>

setTimeout(() => {
const tokenId = parseInt(window.location.hash.substr(1))
if (tokenId < 150) {
window.location.hash = tokenId + 1
window.location.reload()
} else {
console.log('done')
}
}, 100)
// setTimeout(() => {
// const tokenId = parseInt(window.location.hash.substr(1))
// if (tokenId < 150) {
// window.location.hash = tokenId + 1
// window.location.reload()
// } else {
// console.log('done')
// }
// }, 100)
</script>
</head>
<body>
Expand Down

0 comments on commit 89188b5

Please sign in to comment.