Skip to content

Commit 81c9843

Browse files
Merge pull request #50 from topcoder-platform/TCA-326_pop-up
TCA-326 Suppresses the confirmation modal -> dev
2 parents f082b9b + 27c59a8 commit 81c9843

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

client/src/templates/Challenges/redux/execute-challenge-saga.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import {
4545
updateLogs,
4646
logsToConsole,
4747
updateTests,
48-
openModal,
48+
// openModal,
4949
isBuildEnabledSelector,
5050
disableBuildOnError,
5151
updateTestsRunning
@@ -137,7 +137,8 @@ export function* executeChallengeSaga({ payload }) {
137137
playTone('tests-failed');
138138
}
139139
if (challengeComplete && payload?.showCompletionModal) {
140-
yield put(openModal('completion'));
140+
// TOPCODER: do not open modal
141+
// yield put(openModal('completion'));
141142
}
142143
yield put(updateConsole(i18next.t('learn.tests-completed')));
143144
yield put(logsToConsole(i18next.t('learn.console-output')));

0 commit comments

Comments
 (0)