remove console logging
This commit is contained in:
parent
3fb84e0de0
commit
247ba964ec
@ -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(
|
||||
() => {
|
||||
|
Loading…
Reference in New Issue
Block a user