@@ -9,7 +9,6 @@ import SourceMultiTable from './SourceMultiTable';
99import SplitPane from 'react-split-pane' ;
1010import { changeExpr } from './modules/data' ;
1111import { BrowserView , MobileOnlyView } from 'react-device-detect' ;
12- import Cookies from 'universal-cookie' ;
1312import ReactGA from 'react-ga' ;
1413
1514import './Home.css' ;
@@ -19,9 +18,7 @@ import Tutorial from './Tutorial';
1918import type { ComponentType } from 'react' ;
2019import type { RouterHistory } from 'react-router-dom' ;
2120
22- type State = {
23- cookies : typeof Cookies ,
24- } ;
21+ type State = { } ;
2522
2623type Props = {
2724 history : RouterHistory ,
@@ -32,8 +29,6 @@ class Home extends Component<Props, State> {
3229 constructor ( props : Props ) {
3330 super ( props ) ;
3431
35- this . state = { cookies : new Cookies ( ) } ;
36-
3732 // If GA is no longer used, remove preconnect from index.html
3833 switch ( process . env . NODE_ENV ) {
3934 case 'production' :
@@ -65,7 +60,7 @@ class Home extends Component<Props, State> {
6560 < div className = "bottomLeftContainer" >
6661 < DataContainer />
6762 < div className = "footer" >
68- < Tutorial cookies = { this . state . cookies } />
63+ < Tutorial />
6964 < p className = "email" >
7065 For questions, please email{ ' ' }
7166 < a href = "mailto:mmior@cs.rit.edu" > mmior@cs.rit.edu</ a >
0 commit comments