summaryrefslogtreecommitdiff
path: root/frontend/app/views/graph/graph.container.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-04-02 15:54:30 +0200
committerJules Laplace <julescarbon@gmail.com>2021-04-02 15:54:30 +0200
commita5edc770771479532f6e4af08e71b242744625d2 (patch)
tree1445a098f8e5615d864f9006812b54c4db8f311b /frontend/app/views/graph/graph.container.js
parent353334c69f52a49c92618bb673dd11c506c383cd (diff)
mitigating some weird nav issues and FOUC
Diffstat (limited to 'frontend/app/views/graph/graph.container.js')
-rw-r--r--frontend/app/views/graph/graph.container.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/frontend/app/views/graph/graph.container.js b/frontend/app/views/graph/graph.container.js
index 57ea205..7d2baf9 100644
--- a/frontend/app/views/graph/graph.container.js
+++ b/frontend/app/views/graph/graph.container.js
@@ -1,6 +1,4 @@
import React, { Component } from 'react'
-import { Route } from 'react-router-dom'
-import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import './graph.css'
@@ -79,8 +77,4 @@ const mapStateToProps = state => ({
graph: state.graph,
})
-const mapDispatchToProps = dispatch => ({
- // uploadActions: bindActionCreators({ ...uploadActions }, dispatch),
-})
-
-export default connect(mapStateToProps, mapDispatchToProps)(GraphContainer)
+export default connect(mapStateToProps)(GraphContainer)