From 683cb02b5a73900848cd7f8108d787af6f64703e Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sat, 23 Jan 2021 18:59:10 -0600 Subject: [PATCH] convert index sagas to typed-redux-saga/macro --- src/sagas/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sagas/index.ts b/src/sagas/index.ts index 1e88d206..b79ecf12 100644 --- a/src/sagas/index.ts +++ b/src/sagas/index.ts @@ -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(),