We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f082b9b + 27c59a8 commit 81c9843Copy full SHA for 81c9843
client/src/templates/Challenges/redux/execute-challenge-saga.js
@@ -45,7 +45,7 @@ import {
45
updateLogs,
46
logsToConsole,
47
updateTests,
48
- openModal,
+ // openModal,
49
isBuildEnabledSelector,
50
disableBuildOnError,
51
updateTestsRunning
@@ -137,7 +137,8 @@ export function* executeChallengeSaga({ payload }) {
137
playTone('tests-failed');
138
}
139
if (challengeComplete && payload?.showCompletionModal) {
140
- yield put(openModal('completion'));
+ // TOPCODER: do not open modal
141
+ // yield put(openModal('completion'));
142
143
yield put(updateConsole(i18next.t('learn.tests-completed')));
144
yield put(logsToConsole(i18next.t('learn.console-output')));
0 commit comments