Skip to content

Commit

Permalink
🔥 In Ark extension,w hen fixing replay sidebar bug, stop looking for …
Browse files Browse the repository at this point in the history
…something to fix once we've done our job (#639)
  • Loading branch information
shaldengeki authored Oct 16, 2024
1 parent 0529501 commit 68ee413
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ark_nova_stats/extension/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,10 @@ fixReplaySidebar = (intervalId) => {
}

if (pageWrapper.style.display !== "flex") {
console.log("Setting to flex");
pageWrapper.style.display = "flex";
}

clearInterval(intervalId);
}
const fixReplaySidebarInterval = setInterval(() => {
fixReplaySidebar(fixReplaySidebarInterval);
Expand Down

0 comments on commit 68ee413

Please sign in to comment.