mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-25 01:00:41 -04:00
feat: keep log when toggling challenge preview (#49724)
This commit is contained in:
committed by
GitHub
parent
16f3243146
commit
a2d8905375
@@ -283,14 +283,12 @@ export function createExecuteChallengeSaga(types) {
|
||||
return [
|
||||
takeLatest(types.executeChallenge, executeCancellableChallengeSaga),
|
||||
takeLatest(
|
||||
[
|
||||
types.updateFile,
|
||||
types.previewMounted,
|
||||
types.challengeMounted,
|
||||
types.resetChallenge
|
||||
],
|
||||
[types.updateFile, types.challengeMounted, types.resetChallenge],
|
||||
previewChallengeSaga
|
||||
),
|
||||
takeLatest(types.previewMounted, previewChallengeSaga, {
|
||||
flushLogs: false
|
||||
}),
|
||||
takeLatest(types.projectPreviewMounted, previewProjectSolutionSaga)
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user