We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a3880 commit 410b4f6Copy full SHA for 410b4f6
1 file changed
app/composables/useCharts.ts
@@ -56,8 +56,8 @@ function splitIsoRangeIntoChunksInclusive(
56
const actualEnd = cursorEnd.getTime() < finalEnd.getTime() ? cursorEnd : finalEnd
57
58
chunks.push({
59
- startIso: formatIsoDateOnly(cursorStart),
60
- endIso: formatIsoDateOnly(actualEnd),
+ startIso: toIsoDate(cursorStart),
+ endIso: toIsoDate(actualEnd),
61
})
62
63
cursorStart = addDays(actualEnd, 1)
0 commit comments