From 7a847fc89575d0110c97f8fb934d3fa4f79cf91e Mon Sep 17 00:00:00 2001 From: "a.bouhuolia" Date: Thu, 17 Dec 2020 01:22:26 +0200 Subject: [PATCH] fix: remove the dead code. --- client/src/containers/Accounts/withAccounts.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/src/containers/Accounts/withAccounts.js b/client/src/containers/Accounts/withAccounts.js index 467a9c62a..0c7f8f1da 100644 --- a/client/src/containers/Accounts/withAccounts.js +++ b/client/src/containers/Accounts/withAccounts.js @@ -10,15 +10,11 @@ export default (mapState) => { const getAccountsList = getAccountsListFactory(); const mapStateToProps = (state, props) => { - const query = getAccountsTableQuery(state, props); - const mapped = { accountsViews: getResourceViews(state, props, 'accounts'), accountsTable: getAccountsItems(state, props), accountsList: getAccountsList(state, props), accountsTypes: state.accounts.accountsTypes, - - // accountsTableQuery: query, accountsTableQuery: state.accounts.tableQuery, accountsLoading: state.accounts.loading, accountErrors: state.accounts.errors,