Skip to content

Commit

Permalink
Don't reset the selected tab index now
Browse files Browse the repository at this point in the history
  • Loading branch information
stever committed Jun 27, 2023
1 parent 306b593 commit 9d1124c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/web/src/redux/demo/sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ function* handleRunAssemblyActions(_) {
const code = yield select((state) => state.demo.asmCode);
const tap = yield call(getPasmoTap, code);
yield put(loadTap(tap));
yield put(setSelectedTabIndex(0));
} catch (e) {
yield put(setErrorItems(e));
} finally {
Expand All @@ -52,7 +51,6 @@ function* handleRunSinclairBasicActions(_) {
const code = yield select((state) => state.demo.sinclairBasicCode);
const tap = yield call(getZmakebasTap, code);
yield put(loadTap(tap));
yield put(setSelectedTabIndex(0));
} catch (e) {
yield put(setErrorItems(e));
} finally {
Expand Down

0 comments on commit 9d1124c

Please sign in to comment.