Skip to content

Commit

Permalink
let not const
Browse files Browse the repository at this point in the history
  • Loading branch information
UNiXMIT committed Mar 5, 2025
1 parent 4524377 commit 94a77d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/semaphore.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let observer = new MutationObserver(mutations => {
}
let forkIcons = document.querySelectorAll('.mdi-source-fork');
forkIcons.forEach(icon => {
const parentSpan = icon.closest('span');
let parentSpan = icon.closest('span');
if (parentSpan) {
parentSpan.style.display = 'hidden';
}
Expand Down

0 comments on commit 94a77d2

Please sign in to comment.