From fa108947c9a66c59731618a2a03096578d0f76c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Tue, 24 Oct 2023 15:18:32 -0700 Subject: [PATCH] Discard changes to packages/dayjs/index.ts --- packages/dayjs/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/dayjs/index.ts b/packages/dayjs/index.ts index 378a4e085a..12fc0e949a 100644 --- a/packages/dayjs/index.ts +++ b/packages/dayjs/index.ts @@ -10,7 +10,6 @@ import relativeTime from "dayjs/plugin/relativeTime"; import timeZone from "dayjs/plugin/timezone"; import toArray from "dayjs/plugin/toArray"; import utc from "dayjs/plugin/utc"; -import weekday from "dayjs/plugin/weekday"; dayjs.extend(customParseFormat); dayjs.extend(dayjsBusinessTime); @@ -22,7 +21,6 @@ dayjs.extend(timeZone); dayjs.extend(toArray); dayjs.extend(utc); dayjs.extend(minmax); -dayjs.extend(weekday); export type Dayjs = dayjs.Dayjs;