Merge pull request #63 from Keshav2567/patch-1

Fixed endless error
This commit is contained in:
Brad Traversy 2021-07-31 10:29:58 -04:00 committed by GitHub
commit 584c1b99db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,11 +34,13 @@ function randomSelect() {
const interval = setInterval(() => {
const randomTag = pickRandomTag()
if (randomTag !== undefined) {
highlightTag(randomTag)
setTimeout(() => {
unHighlightTag(randomTag)
}, 100)
}
}, 100);
setTimeout(() => {