Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Jun 18, 2019
1 parent 689f74e commit 976faf1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/addons/dragAndDrop/EventContainerWrapper.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types'
import React from 'react'
import dates from '../../utils/dates'
import * as dates from '../../utils/dates'
import { findDOMNode } from 'react-dom'

import Selection, {
Expand Down
2 changes: 1 addition & 1 deletion src/addons/dragAndDrop/WeekWrapper.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types'
import React from 'react'
import dates from '../../utils/dates'
import * as dates from '../../utils/dates'
import { getSlotAtX, pointInBox } from '../../utils/selection'
import { findDOMNode } from 'react-dom'

Expand Down
2 changes: 1 addition & 1 deletion test/utils/DayEventLayout.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getStyledEvents } from '../../src/utils/DayEventLayout'
import { getSlotMetrics } from '../../src/utils/TimeSlots'
import dates from '../../src/utils/dates'
import * as dates from '../../src/utils/dates'

describe('getStyledEvents', () => {
const d = (...args) => new Date(2015, 3, 1, ...args)
Expand Down
2 changes: 1 addition & 1 deletion test/utils/TimeSlots.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getSlotMetrics } from '../../src/utils/TimeSlots'
import dates from '../../src/utils/dates'
import * as dates from '../../src/utils/dates'

describe('getSlotMetrics', () => {
const min = dates.startOf(new Date(), 'day')
Expand Down

0 comments on commit 976faf1

Please sign in to comment.