File tree Expand file tree Collapse file tree 4 files changed +1
-18
lines changed
components/StateRoute/ComponentMap Expand file tree Collapse file tree 4 files changed +1
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
19
19
} from '../slices/mainSlice' ;
20
20
import { useDispatch , useSelector } from 'react-redux' ;
21
21
import { MainState , RootState } from '../FrontendTypes' ;
22
- import HeatMapLegend from '../components/StateRoute/ComponentMap/heatMapLegend' ;
23
22
24
23
/*
25
24
This is the main container where everything in our application is rendered
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import StateRoute from '../components/StateRoute/StateRoute';
8
8
import DiffRoute from '../components/DiffRoute/DiffRoute' ;
9
9
import { StateContainerProps } from '../FrontendTypes' ;
10
10
import { Outlet } from 'react-router' ;
11
- import HeatMapLegend from '../components/StateRoute/ComponentMap/heatMapLegend' ;
12
11
13
12
// eslint-disable-next-line react/prop-types
14
13
const StateContainer = ( props : StateContainerProps ) : JSX . Element => {
@@ -46,7 +45,6 @@ const StateContainer = (props: StateContainerProps): JSX.Element => {
46
45
</ NavLink >
47
46
</ div >
48
47
</ div >
49
- < HeatMapLegend />
50
48
< Routes >
51
49
< Route
52
50
path = '/diff/*'
@@ -70,8 +68,6 @@ const StateContainer = (props: StateContainerProps): JSX.Element => {
70
68
snapshots = { snapshots }
71
69
currLocation = { currLocation }
72
70
/>
73
- { /* <Outlet/> */ }
74
- { /* <HeatMapLegend /> */ }
75
71
</ div >
76
72
}
77
73
/>
Original file line number Diff line number Diff line change 6
6
grid-template-rows : 1fr auto ; /* Change to auto for the bottom row */
7
7
grid-template-areas :
8
8
' actions states'
9
- ' bottom bottom' ; /* New bottom area that spans full width */
9
+ ' bottom bottom' ;
10
10
}
11
11
12
12
/* if extension width is less than 500px, stack the body containers */
You can’t perform that action at this time.
0 commit comments