UnconditionedLife / smum

SMUM Checkin for Santa Maria Urban Ministries (San Jose, California)

Home Page:https://www.santamariasj.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Improperly formatted dates after transition to dayjs

scott-r opened this issue · comments

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.

Fixed as described