Fix bug where isSunday was always false

This commit is contained in:
ehnba 2024-05-05 17:27:21 +03:00
parent 554f02bfc1
commit 882177fb82

View file

@ -29,8 +29,8 @@
let columnCount = 1;
let numberFormat = Intl.NumberFormat();
let adding = false;
let isSunday = false;
let today = getCurrentDay();
let isSunday = today == "sunday";
let summary = {};
let todayOnlyItems = {};
let resin = 0;