From 3b6fa6f3b1c7a624f7fcb8aaa186a0cc72123e6d Mon Sep 17 00:00:00 2001 From: Kyle Gill Date: Fri, 31 May 2019 19:54:00 -0600 Subject: [PATCH] chore: abbrev for date on days of month --- src/routes/Month.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/Month.js b/src/routes/Month.js index 10b192f..e59dbf8 100644 --- a/src/routes/Month.js +++ b/src/routes/Month.js @@ -69,7 +69,7 @@ class Month extends Component { dayCards.push( - {format(new Date(year, month - 1, i + 1), "dddd")} + {format(new Date(year, month - 1, i + 1), "ddd")} {i + 1} @@ -83,7 +83,7 @@ class Month extends Component { > - {format(new Date(year, month - 1, i + 1), "dddd")} + {format(new Date(year, month - 1, i + 1), "ddd")} {i + 1}