Remove console log

This commit is contained in:
Alfred Melch 2019-12-22 12:53:25 +01:00
parent 3bec754ae8
commit f8632b2e97

View File

@ -82,7 +82,6 @@ export const selectPrevWord = createSelector(
selectWords,
selectCurrentSegmentIndex,
(words, curSegment) => {
console.log(words, curSegment, getNextSmallerNumber(curSegment, words))
return getNextSmallerNumber(curSegment, words)
}
)