convert index sagas to typed-redux-saga/macro

This commit is contained in:
David Lechner
2021-01-23 18:59:10 -06:00
parent 3ba52e560d
commit 683cb02b5a
+2 -2
View File
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2020-2021 The Pybricks Authors
import { all, put } from 'redux-saga/effects';
import { all, put } from 'typed-redux-saga/macro';
import { didStart } from '../actions/app';
import app from './app';
import bleUart from './ble-uart';
@@ -19,7 +19,7 @@ import terminal from './terminal';
/* istanbul ignore next */
export default function* (): Generator {
yield all([
yield* all([
app(),
bleUart(),
lwp3BootloaderBle(),