diff --git a/embark-ui/src/reducers/index.js b/embark-ui/src/reducers/index.js
index 871066771..8380dfbea 100644
--- a/embark-ui/src/reducers/index.js
+++ b/embark-ui/src/reducers/index.js
@@ -16,9 +16,7 @@ const rootReducer = combineReducers({
contractProfile: contractProfileReducer,
blocks: blocksReducer,
transactions: transactionsReducer,
- commands: commandsReducer,
- contracts: contractsReducer,
- contract: contractReducer
+ commands: commandsReducer
});
export default rootReducer;
diff --git a/embark-ui/src/routes.js b/embark-ui/src/routes.js
index 1066dfe90..8cba97f24 100644
--- a/embark-ui/src/routes.js
+++ b/embark-ui/src/routes.js
@@ -16,7 +16,6 @@ const routes = (
-
diff --git a/embark-ui/src/sagas/index.js b/embark-ui/src/sagas/index.js
index 950905d64..04ad9d181 100644
--- a/embark-ui/src/sagas/index.js
+++ b/embark-ui/src/sagas/index.js
@@ -154,9 +154,9 @@ export default function *root() {
fork(watchFetchProcessLogs),
fork(watchListenToProcessLogs),
fork(watchFetchBlock),
- fork(watchFetchTransactions)
+ fork(watchFetchTransactions),
fork(watchFetchTransaction),
- fork(watchPostCommand)
+ fork(watchPostCommand),
fork(watchFetchBlocks),
fork(watchFetchContracts),
fork(watchFetchContract),