UnconditionedLife / smum

SMUM Checkin for Santa Maria Urban Ministries (San Jose, California)
https://www.santamariasj.org
3 stars 0 forks source link

Improperly formatted dates after transition to dayjs #181

Closed scott-r closed 5 months ago

scott-r commented 5 months ago

Although dayjs is almost a drop-in replacement for moment, they do not support exactly the same date formats. In particular, format('MMM Do') will produce a result like Apr 9th from moment but Apr 9o from dayjs. Format strings of this type need to be replaced by MMM D, which will produce Apr 9 with either library.

scott-r commented 5 months ago

Fixed as described