From 43b22ce55fbb3184c4d798ac8bff2c90c2c7e940 Mon Sep 17 00:00:00 2001 From: boojack Date: Wed, 7 Dec 2022 22:49:05 +0800 Subject: [PATCH] chore: fix typo (#695) --- web/src/components/DailyReviewDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/DailyReviewDialog.tsx b/web/src/components/DailyReviewDialog.tsx index 4ae45860..c4c6f869 100644 --- a/web/src/components/DailyReviewDialog.tsx +++ b/web/src/components/DailyReviewDialog.tsx @@ -16,7 +16,7 @@ interface Props extends DialogProps { currentDateStamp: DateStamp; } -const monthChineseStrArray = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dev"]; +const monthChineseStrArray = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec"]; const weekdayChineseStrArray = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; const DailyReviewDialog: React.FC = (props: Props) => {