fix actionable + lightmode

This commit is contained in:
Emily
2025-01-20 14:47:57 +01:00
parent 6b5d23566c
commit 3923a06e9b
4 changed files with 9 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ class DateService {
if (slice === 'hour') return fns.format(date, 'HH:mm');
if (slice === 'day') return fns.format(date, 'dd/MM');
if (slice === 'week') return fns.format(date, 'dd/MM');
if (slice === 'month') return fns.format(date, 'MM MMMM');
if (slice === 'month') return fns.format(date, 'MMMM');
if (slice === 'year') return fns.format(date, 'YYYY');
return iso;
}