aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/provider-approval/provider-approval.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pages/provider-approval/provider-approval.container.js')
-rw-r--r--ui/app/components/pages/provider-approval/provider-approval.container.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/ui/app/components/pages/provider-approval/provider-approval.container.js b/ui/app/components/pages/provider-approval/provider-approval.container.js
deleted file mode 100644
index 28e4531a9..000000000
--- a/ui/app/components/pages/provider-approval/provider-approval.container.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import { connect } from 'react-redux'
-import ProviderApproval from './provider-approval.component'
-import { approveProviderRequest, rejectProviderRequest } from '../../../actions'
-
-function mapDispatchToProps (dispatch) {
- return {
- approveProviderRequest: tabID => dispatch(approveProviderRequest(tabID)),
- rejectProviderRequest: tabID => dispatch(rejectProviderRequest(tabID)),
- }
-}
-
-export default connect(null, mapDispatchToProps)(ProviderApproval)