diff --git a/apps/web/src/utils/dayjs.tsx b/apps/web/src/utils/dayjs.tsx index 769857bae..29d308e17 100644 --- a/apps/web/src/utils/dayjs.tsx +++ b/apps/web/src/utils/dayjs.tsx @@ -1,6 +1,7 @@ import dayjs from "dayjs"; import duration from "dayjs/plugin/duration"; import isBetween from "dayjs/plugin/isBetween"; +import isSameOrAfter from "dayjs/plugin/isSameOrAfter"; import isSameOrBefore from "dayjs/plugin/isSameOrBefore"; import localeData from "dayjs/plugin/localeData"; import localizedFormat from "dayjs/plugin/localizedFormat"; @@ -136,6 +137,7 @@ dayjs.extend(minMax); dayjs.extend(utc); dayjs.extend(timezone); dayjs.extend(duration); +dayjs.extend(isSameOrAfter); const DayjsContext = React.createContext<{ dayjs: (date?: dayjs.ConfigType) => dayjs.Dayjs;