Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/js/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ document.addEventListener("DOMContentLoaded", () => {
const footer = document.createElement("footer");
footer.className = "footer";

footer.innerHTML = `
footer.textContent = `
<div class="footer-container">

<div class="footer-section brand">
Expand Down
2 changes: 2 additions & 0 deletions scripts/analyze-inactivity.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,5 @@ async function fetchData(url) {
process.exit(1);
}
})();

.catch(err => console.error("Promise.all failed:", err));
2 changes: 2 additions & 0 deletions scripts/sync-leaderboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -706,3 +706,5 @@ async function processTimeframe(sourceData, DATA_DIR, periodName, daysAgo) {
console.error(`Failed to write sync file: `, err.message);
}
})();

.catch(err => console.error("Promise.all failed:", err));
Loading