chore: change date format

This commit is contained in:
Riccardo Senica
2025-01-25 10:17:57 +00:00
parent cdef3ec86a
commit c3dae18818
3 changed files with 7 additions and 7 deletions

View File

@@ -41,7 +41,7 @@ export async function processDayLog(
return {
success: true,
message: `Added comment to existing log for ${normalizedDate.toLocaleDateString()}`,
message: `Added comment to existing log for ${normalizedDate.toLocaleDateString('en-GB')}`,
data: updatedLog
};
} else {
@@ -54,7 +54,7 @@ export async function processDayLog(
return {
success: true,
message: `Created new log for ${normalizedDate.toLocaleDateString()}`,
message: `Created new log for ${normalizedDate.toLocaleDateString('en-GB')}`,
data: newLog
};
}