remove debug print

This commit is contained in:
end-4 2024-05-30 20:57:59 +07:00
parent 2345ff8fee
commit a94172d9cd

View file

@ -34,8 +34,6 @@ export async function startAutoDarkModeService() {
if (fromTime == toTime) return;
const currentDateTime = GLib.DateTime.new_now_local();
const currentTime = [currentDateTime.get_hour(), currentDateTime.get_minute()];
// console.log(currentTime, fromTime, toTime);
darkMode.value = timeInRange(currentTime, fromTime, toTime);
})
}