remove console logging

This commit is contained in:
Alfred Melch 2019-12-22 18:30:19 +01:00
parent 3fb84e0de0
commit 247ba964ec

View File

@ -4,8 +4,7 @@ import { useSelector, useDispatch } from 'react-redux'
import {
selectHasNextSegment,
selectRunning,
selectInterval,
selectCurrentSegment
selectInterval
} from '../store/selectors'
import { incrementSegment, stop, pause, start } from '../store/actions'
import { FiPlay, FiPause, FiSquare } from 'react-icons/fi'
@ -17,8 +16,6 @@ export const PlayerControl = () => {
const running = useSelector(selectRunning)
const hasNext = useSelector(selectHasNextSegment)
const interval = useSelector(selectInterval)
const segment = useSelector(selectCurrentSegment)
console.log(interval, segment)
useInterval(
() => {