hi so we have something a bit weird going on with date formatting
cljs.user> (tick/date "2021-12-26")
#time/date "2021-12-26"
cljs.user> (tick/format "EEEE, dd MMMM YYYY" (tick/date "2021-12-26"))
"Sunday, 26 December 2022"
it seems to consistently produce the wrong year
cljs.user> (tick/format "EEEE, dd MMMM YYYY" (tick/date "2021-12-25"))
"Saturday, 25 December 2021"
from boxing day onwards
Lower case 'y' 😉
oooh thanks 😄 it's one of those things that kinda worked till it didn't 😐
yes now I see that all the other fns use lowercase
blame it on a sunday morning prod issue 👍🏻
👍