From 3870f6d316c4b0a9d11d474d42600b4db529b58d Mon Sep 17 00:00:00 2001 From: emizzle Date: Thu, 23 Aug 2018 19:17:05 +1000 Subject: [PATCH] finish removing loading entities --- embark-ui/src/actions/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/embark-ui/src/actions/index.js b/embark-ui/src/actions/index.js index 685cee9d4..9bab56fc1 100644 --- a/embark-ui/src/actions/index.js +++ b/embark-ui/src/actions/index.js @@ -1,13 +1,12 @@ export const REQUEST = 'REQUEST'; export const SUCCESS = 'SUCCESS'; export const FAILURE = 'FAILURE'; -export const ENTITY = 'ENTITY'; function createRequestTypes(base) { return [REQUEST, SUCCESS, FAILURE].reduce((acc, type) => { acc[type] = `${base}_${type}`; return acc; - }, { id: 0 }); + }, {}); } function action(type, payload = {}) {