chore: remove log
All checks were successful
Deploy Blog / deploy (push) Successful in 1m52s

This commit is contained in:
Thomas Bishop 2025-11-25 18:33:39 +00:00
parent 1333195ebe
commit 07266f70a7

View file

@ -24,14 +24,6 @@ const days = [
]
const convertDate = (isoStamp) => {
//const unixSeconds = new Date(isoStamp)
//// const weekday = days[unixSeconds.getDay()]
//const day = unixSeconds.getDate()
//const month = months[unixSeconds.getMonth()]
//const year = unixSeconds.getFullYear()
//return `${day} ${month} ${year}`
console.log(isoStamp)
const date = new Date(isoStamp)
const year = date.getFullYear()
const month = String(date.getMonth() + 1).padStart(2, "0")