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.
1 parent 8bbe9af commit 72a9e11Copy full SHA for 72a9e11
src/commons/sagas/WorkspaceSaga/helpers/evalCode.ts
@@ -487,8 +487,8 @@ export function* evalCodeConductorSaga(
487
yield call([hostPlugin, 'startEvaluator'], entrypointFilePath);
488
while (true) {
489
const { stop } = yield race({
490
- repl: take(actions.evalRepl),
491
- stop: take(actions.beginInterruptExecution)
+ repl: take(actions.evalRepl.type),
+ stop: take(actions.beginInterruptExecution.type)
492
});
493
if (stop) break;
494
const code: string = yield select(
0 commit comments