mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 17:45:22 +00:00
app/actions: drop didStart
This action is no longer used.
This commit is contained in:
committed by
David Lechner
parent
fdb3c3ea2e
commit
0f56bb7174
@@ -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
@@ -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()),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user