mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-23 12:38:18 +00:00
fix merge issues
This commit is contained in:
parent
c318274018
commit
f85c4eca57
@ -16,9 +16,7 @@ const rootReducer = combineReducers({
|
|||||||
contractProfile: contractProfileReducer,
|
contractProfile: contractProfileReducer,
|
||||||
blocks: blocksReducer,
|
blocks: blocksReducer,
|
||||||
transactions: transactionsReducer,
|
transactions: transactionsReducer,
|
||||||
commands: commandsReducer,
|
commands: commandsReducer
|
||||||
contracts: contractsReducer,
|
|
||||||
contract: contractReducer
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default rootReducer;
|
export default rootReducer;
|
||||||
|
@ -16,7 +16,6 @@ const routes = (
|
|||||||
<Route path="/embark/explorer/" component={ExplorerLayout} />
|
<Route path="/embark/explorer/" component={ExplorerLayout} />
|
||||||
<Route path="/embark/processes/" component={ProcessesLayout} />
|
<Route path="/embark/processes/" component={ProcessesLayout} />
|
||||||
<Route path="/embark/explorer/accounts" component={AccountsContainer} />
|
<Route path="/embark/explorer/accounts" component={AccountsContainer} />
|
||||||
<Route path="/embark/processes" component={ProcessesContainer} />
|
|
||||||
<Route path="/embark/contracts/:contractName" component={ContractLayout} />
|
<Route path="/embark/contracts/:contractName" component={ContractLayout} />
|
||||||
<Route path="/embark/contracts" component={ContractsContainer} />
|
<Route path="/embark/contracts" component={ContractsContainer} />
|
||||||
<Route component={NoMatch} />
|
<Route component={NoMatch} />
|
||||||
|
@ -154,9 +154,9 @@ export default function *root() {
|
|||||||
fork(watchFetchProcessLogs),
|
fork(watchFetchProcessLogs),
|
||||||
fork(watchListenToProcessLogs),
|
fork(watchListenToProcessLogs),
|
||||||
fork(watchFetchBlock),
|
fork(watchFetchBlock),
|
||||||
fork(watchFetchTransactions)
|
fork(watchFetchTransactions),
|
||||||
fork(watchFetchTransaction),
|
fork(watchFetchTransaction),
|
||||||
fork(watchPostCommand)
|
fork(watchPostCommand),
|
||||||
fork(watchFetchBlocks),
|
fork(watchFetchBlocks),
|
||||||
fork(watchFetchContracts),
|
fork(watchFetchContracts),
|
||||||
fork(watchFetchContract),
|
fork(watchFetchContract),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user