Merge pull request #43 from Bouncey/feat/introOnBlockClick

Feat: Navigate to intro page on block click
This commit is contained in:
Stuart Taylor
2018-05-16 15:10:17 +01:00
committed by Mrugesh Mohapatra
parent 27b65b94a7
commit 571209809c
16 changed files with 108 additions and 10 deletions

View File

@@ -74,7 +74,6 @@ function clearCodeEpic(action$, { getState }) {
function saveCodeEpic(action$, { getState }) {
return action$.pipe(
tap(console.info),
ofType(types.executeChallenge),
// do not save challenge if code is locked
filter(() => !isCodeLockedSelector(getState())),