app/actions: drop didStart

This action is no longer used.
This commit is contained in:
David Lechner
2022-10-27 13:17:51 -05:00
committed by David Lechner
parent fdb3c3ea2e
commit 0f56bb7174
2 changed files with 1 additions and 8 deletions
-5
View File
@@ -43,8 +43,3 @@ export const appDidResolveInstallPrompt = createAction(
export const didInstall = createAction(() => ({
type: 'app.action.didInstall',
}));
/** Creates an action that indicates the app has just started. */
export const didStart = createAction(() => ({
type: 'app.action.didStart',
}));
+1 -3
View File
@@ -1,9 +1,8 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2020-2022 The Pybricks Authors
import { all, put } from 'typed-redux-saga/macro';
import { all } from 'typed-redux-saga/macro';
import alerts, { AlertsSagaContext } from './alerts/sagas';
import { didStart } from './app/actions';
import app from './app/sagas';
import blePybricksService from './ble-pybricks-service/sagas';
import ble from './ble/sagas';
@@ -37,7 +36,6 @@ export default function* (): Generator {
mpy(),
notifications(),
terminal(),
put(didStart()),
]);
}