Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
lint
  • Loading branch information
teodosii committed Jun 6, 2024
1 parent b4c6fba commit e42bc86
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import dayjs from 'dayjs';
import { observer } from 'mobx-react';

import { Text } from 'components/Text/Text';
import { getDateForDatePicker } from 'containers/RotationForm/RotationForm.helpers';
import { useStore } from 'state/useStore';

import styles from 'containers/RotationForm/RotationForm.module.css';
Expand All @@ -28,7 +27,7 @@ export const DateTimePicker = observer(
({ value: propValue, onChange, disabled, onFocus, onBlur, error }: DateTimePickerProps) => {
const styles = useStyles2(getStyles);
const { timezoneStore } = useStore();
const { getDateInSelectedTimezone, selectedTimezoneOffset } = timezoneStore;
const { getDateInSelectedTimezone } = timezoneStore;

const valueInSelectedTimezone = getDateInSelectedTimezone(propValue);

Expand Down

0 comments on commit e42bc86

Please sign in to comment.