diff --git a/src/pages/desktop.js b/src/pages/desktop.js index 9c90b9b..dfb87ed 100755 --- a/src/pages/desktop.js +++ b/src/pages/desktop.js @@ -157,7 +157,10 @@ async function loadDesktopKazaProgress(container, pb) { const totalCompleted = Math.max(0, grandInitialTotal - grandCurrentDebtTotal); const pct = grandInitialTotal > 0 - ? Math.min(100, Math.max(0, Math.round((totalCompleted / grandInitialTotal) * 100))) + ? Math.min( + 100, + Math.max(0, Math.round((totalCompleted / grandInitialTotal) * 100)), + ) : 0; const bar = container.querySelector("#desktopKazaBar"); @@ -214,7 +217,7 @@ async function loadImsakiye(container, selectedCity) { widget.innerHTML = `
- 🕌 NAMAZ VAKİTLERİ + 🕌 NAMAZ VAKİTLERİ ${selectedCity} Şu an: ${times.currentPrayer?.name}
@@ -226,4 +229,4 @@ async function loadImsakiye(container, selectedCity) {
Yatsı: ${times.isha}
`; -} \ No newline at end of file +}