From 2240380f6862af7855509c777dc85ac445c8c18b Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 29 Dec 2023 14:27:43 +0800 Subject: [PATCH] Fix wrong month shown for different system date formats --- src/pages/account-statuses.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/account-statuses.jsx b/src/pages/account-statuses.jsx index bd6c296a..317d74a1 100644 --- a/src/pages/account-statuses.jsx +++ b/src/pages/account-statuses.jsx @@ -377,14 +377,14 @@ function AccountStatuses() { } : {}, ); + const [year, month] = value.split('-'); + const monthIndex = parseInt(month, 10) - 1; + const date = new Date(year, monthIndex); showToast( - `Showing posts in ${new Date(value).toLocaleString( - 'default', - { - month: 'long', - year: 'numeric', - }, - )}`, + `Showing posts in ${date.toLocaleString('default', { + month: 'long', + year: 'numeric', + })}`, ); }} />