1
0

Add log statement for daily commit count in renderer.js

This commit is contained in:
2025-05-26 06:50:22 +02:00
parent 2fba3a40f0
commit c8e50e6402

View File

@@ -694,7 +694,7 @@ folders.forEach(folderObj => {
window.electronAPI.getDailyCommitStats().then(stats => {
const today = new Date().toISOString().slice(0, 10);
const todayCount = stats[today] || 0;
console.log('Commits heute:', todayCount);
// An deine Katzenanimation weitergeben!
window.updateCatGlow(todayCount);
});