From: Dessalines Date: Thu, 29 Jun 2023 12:59:54 +0000 (-0400) Subject: Removing unecessary timezone adjusting X-Git-Url: http://these/git/readmes/README.ja.md?a=commitdiff_plain;h=eee1f443a873135a57953fd20b5624bd6cc65d50;p=lemmy-ui.git Removing unecessary timezone adjusting --- diff --git a/package.json b/package.json index ef07b29..16d3aec 100644 --- a/package.json +++ b/package.json @@ -22,16 +22,9 @@ "translations:update": "git submodule update --remote --recursive" }, "lint-staged": { - "*.{ts,tsx,js}": [ - "prettier --write", - "eslint --fix" - ], - "*.{css, scss}": [ - "prettier --write" - ], - "package.json": [ - "sortpack" - ] + "*.{ts,tsx,js}": ["prettier --write", "eslint --fix"], + "*.{css, scss}": ["prettier --write"], + "package.json": ["sortpack"] }, "dependencies": { "@babel/plugin-proposal-decorators": "^7.21.0", @@ -52,7 +45,6 @@ "cross-fetch": "^3.1.5", "css-loader": "^6.7.3", "date-fns": "^2.30.0", - "date-fns-tz": "^2.0.0", "emoji-mart": "^5.4.0", "emoji-short-name": "^2.0.0", "express": "~4.18.2", diff --git a/src/shared/components/common/moment-time.tsx b/src/shared/components/common/moment-time.tsx index 24bd3c7..e658695 100644 --- a/src/shared/components/common/moment-time.tsx +++ b/src/shared/components/common/moment-time.tsx @@ -1,5 +1,5 @@ import { capitalizeFirstLetter, formatPastDate } from "@utils/helpers"; -import { formatInTimeZone } from "date-fns-tz"; +import { format } from "date-fns"; import parseISO from "date-fns/parseISO"; import { Component } from "inferno"; import { I18NextService } from "../../services"; @@ -13,9 +13,8 @@ interface MomentTimeProps { } function formatDate(input: string) { - const tz = Intl.DateTimeFormat().resolvedOptions().timeZone; const parsed = parseISO(input + "Z"); - return formatInTimeZone(parsed, tz, "PPPPpppp"); + return format(parsed, "PPPPpppp"); } export class MomentTime extends Component { diff --git a/yarn.lock b/yarn.lock index 57cde87..46fcba1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3237,11 +3237,6 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -date-fns-tz@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-2.0.0.tgz#1b14c386cb8bc16fc56fe333d4fc34ae1d1099d5" - integrity sha512-OAtcLdB9vxSXTWHdT8b398ARImVwQMyjfYGkKD2zaGpHseG2UPHbHjXELReErZFxWdSLph3c2zOaaTyHfOhERQ== - date-fns@^2.30.0: version "2.30.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0"