diff --git a/app/routes/time-entries/$timeEntryId.tsx b/app/routes/time-entries/$timeEntryId.tsx
index e4ccbb7..d3e8cb9 100644
--- a/app/routes/time-entries/$timeEntryId.tsx
+++ b/app/routes/time-entries/$timeEntryId.tsx
@@ -326,6 +326,24 @@ export default function TimeEntryDetailsPage() {
newDate.setDate(date.getDate());
setStart(newDate);
}}
+ firstDayOfWeek="monday"
+ renderDay={(date) => {
+ const day = date.getDate();
+ const today = new Date();
+
+ const isToday =
+ date.getDate() === today.getDate() &&
+ date.getMonth() === today.getMonth() &&
+ date.getFullYear() === today.getFullYear();
+
+ return isToday ? (
+
+ {day}
+
+ ) : (
+ {day}
+ );
+ }}
/>
{
+ const day = date.getDate();
+ const today = new Date();
+
+ const isToday =
+ date.getDate() === today.getDate() &&
+ date.getMonth() === today.getMonth() &&
+ date.getFullYear() === today.getFullYear();
+
+ return isToday ? (
+
+ {day}
+
+ ) : (
+ {day}
+ );
+ }}
/>
{
+ const day = date.getDate();
+ const today = new Date();
+
+ const isToday =
+ date.getDate() === today.getDate() &&
+ date.getMonth() === today.getMonth() &&
+ date.getFullYear() === today.getFullYear();
+
+ return isToday ? (
+
+ {day}
+
+ ) : (
+ {day}
+ );
+ }}
/>
{
+ const day = date.getDate();
+ const today = new Date();
+
+ const isToday =
+ date.getDate() === today.getDate() &&
+ date.getMonth() === today.getMonth() &&
+ date.getFullYear() === today.getFullYear();
+
+ return isToday ? (
+
+ {day}
+
+ ) : (
+ {day}
+ );
+ }}
/>