This commit is contained in:
Leo Vasanko
2025-08-24 10:03:42 -06:00
parent 4b2a2d0b36
commit 15f7ff4fec
2 changed files with 9 additions and 3 deletions

View File

@@ -291,8 +291,7 @@ function lunarPhaseSymbol(date) {
* Format date as short localized string (e.g., "Jan 15")
*/
function formatDateShort(date) {
return date.toLocaleDateString(undefined, { month: 'short', day: 'numeric' })
.replace(/, /, ' ')
return date.toLocaleDateString(undefined, { month: 'short', day: 'numeric' }).replace(/, /, ' ')
}
/**