Remove year in Date module

You don't know the year we're in?
This commit is contained in:
Aj - Thomas
2022-05-10 21:00:18 +02:00
parent b92462d056
commit a7f4187a82

View File

@@ -33,7 +33,7 @@ export default function DateComponent(props: any) {
{
// Use dayjs to format the date
// https://day.js.org/en/getting-started/installation/
dayjs(date).format('dddd, MMMM D YYYY')
dayjs(date).format('dddd, MMMM D')
}
</Text>
</Group>