From 032664e365b730fc895c890c71bce8fadf79f080 Mon Sep 17 00:00:00 2001 From: Yulia Shanyrova Date: Fri, 4 Nov 2022 14:59:00 +0100 Subject: [PATCH] TZ importing deleted --- grafana-plugin/src/pages/schedule/Schedule.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/grafana-plugin/src/pages/schedule/Schedule.tsx b/grafana-plugin/src/pages/schedule/Schedule.tsx index 533f9f1f..bebb0900 100644 --- a/grafana-plugin/src/pages/schedule/Schedule.tsx +++ b/grafana-plugin/src/pages/schedule/Schedule.tsx @@ -5,7 +5,6 @@ import { getLocationSrv } from '@grafana/runtime'; import { Button, HorizontalGroup, VerticalGroup, IconButton, ToolbarButton, Icon, Modal } from '@grafana/ui'; import cn from 'classnames/bind'; import dayjs from 'dayjs'; -import timezone from 'dayjs/plugin/timezone'; import { omit } from 'lodash-es'; import { observer } from 'mobx-react'; @@ -28,7 +27,6 @@ import { withMobXProviderContext } from 'state/withStore'; import { getStartOfWeek } from './Schedule.helpers'; import styles from './Schedule.module.css'; -dayjs.extend(timezone); const cx = cn.bind(styles); interface SchedulePageProps extends AppRootProps, WithStoreProps {}