diff --git a/packages/neos-ui-redux-store/src/System/index.spec.js b/packages/neos-ui-redux-store/src/System/index.spec.js index 7057c686b3..4263d920b9 100644 --- a/packages/neos-ui-redux-store/src/System/index.spec.js +++ b/packages/neos-ui-redux-store/src/System/index.spec.js @@ -2,7 +2,6 @@ import {actionTypes, actions, reducer, defaultState, selectors} from './index'; test(`should export actionTypes`, () => { expect(actionTypes).not.toBe(undefined); - expect(typeof (actionTypes.BOOT)).toBe('string'); expect(typeof (actionTypes.INIT)).toBe('string'); expect(typeof (actionTypes.READY)).toBe('string'); expect(typeof (actionTypes.AUTHENTICATION_TIMEOUT)).toBe('string'); @@ -11,13 +10,11 @@ test(`should export actionTypes`, () => { test(`should export action creators`, () => { expect(actions).not.toBe(undefined); - expect(typeof (actions.boot)).toBe('function'); expect(typeof (actions.init)).toBe('function'); expect(typeof (actions.ready)).toBe('function'); expect(typeof (actions.authenticationTimeout)).toBe('function'); expect(typeof (actions.reauthenticationSucceeded)).toBe('function'); - expect(typeof (actions.boot().type)).toBe('string'); expect(typeof (actions.init().type)).toBe('string'); expect(typeof (actions.ready().type)).toBe('string'); expect(typeof (actions.authenticationTimeout().type)).toBe('string'); diff --git a/packages/neos-ui-redux-store/src/System/index.ts b/packages/neos-ui-redux-store/src/System/index.ts index 2884cf45c5..e8ad93b036 100644 --- a/packages/neos-ui-redux-store/src/System/index.ts +++ b/packages/neos-ui-redux-store/src/System/index.ts @@ -27,7 +27,6 @@ export const defaultState: State = { // Export the action types // export enum actionTypes { - BOOT = '@neos/neos-ui/System/BOOT', INIT = '@neos/neos-ui/System/INIT', READY = '@neos/neos-ui/System/READY', AUTHENTICATION_TIMEOUT = '@neos/neos-ui/System/AUTHENTICATION_TIMEOUT', @@ -38,7 +37,6 @@ export enum actionTypes { // Export the actions // export const actions = { - boot: () => createAction(actionTypes.BOOT), init: (state: GlobalState) => createAction(actionTypes.INIT, state), ready: () => createAction(actionTypes.READY), authenticationTimeout: () => createAction(actionTypes.AUTHENTICATION_TIMEOUT), diff --git a/packages/neos-ui/src/index.js b/packages/neos-ui/src/index.js index 1a6f125e02..4908d5849e 100644 --- a/packages/neos-ui/src/index.js +++ b/packages/neos-ui/src/index.js @@ -61,8 +61,6 @@ async function main() { initializeReduxState(); initializeFetchWithErrorHandling(); - store.dispatch(actions.System.boot()); - await Promise.all([ loadNodeTypesSchema(), loadTranslations(),