Skip to content

Commit

Permalink
fix: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Dec 29, 2020
1 parent 860ac9c commit 74e78bf
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/components/Chapters/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ type ContainerProps = ReturnType<typeof mapStateToProps> &
};

const ChapterFooter: React.FC<ContainerProps> = (props) => {
console.log('ChapterFooter -> props', props);
const { chapterFavorites, previousChapter, nextChapter } = props;

const history = useHistory();
Expand Down
1 change: 0 additions & 1 deletion src/configureStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const configureStore = () => {

// If Redux Dev Tools and Saga Dev Tools Extensions are installed, enable them
/* istanbul ignore next */
console.log('configureStore -> process.env.NODE_ENV', process.env.NODE_ENV);
if (process.env.NODE_ENV !== 'production' && typeof window === 'object') {
enhancer = composeWithDevTools(enhancer);
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/Tutorial/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ interface ContainerProps {
setHasSeenTutorial: Function;
}

const Tutorial: React.FC<ContainerProps> = props => {
const Tutorial: React.FC<ContainerProps> = (props) => {
const slidesRef = useRef<HTMLIonSlidesElement>(null);
console.log('slidesRef', slidesRef);

return (
<>
Expand Down

0 comments on commit 74e78bf

Please sign in to comment.