From cfefb127ac4b362a096a61b297ff602c06965d82 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 8 Dec 2021 17:59:26 -0600 Subject: [PATCH] Updated version --- package.json | 2 +- pages/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 198ca9b..fc86df8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "name": "lucid-creations-media-potty-chart", "homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/", - "version": "v0.0.4.0-pre-alpha", + "version": "v0.0.4.1-pre-alpha", "author": { "name": "Lucid Creations Media", "url": "https://lucidcreations.media", diff --git a/pages/index.tsx b/pages/index.tsx index a0fe706..5f76f49 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -13,8 +13,8 @@ interface UpdateCalendarProps { const IndexPage = (): JSX.Element => { const date = useRef({ year: parseInt(format(new Date(), "y")), - month: parseInt(format(new Date(), "d")), - day: parseInt(format(new Date(), "L")), + month: parseInt(format(new Date(), "M")), + day: parseInt(format(new Date(), "d")), }); return (