Skip to content

Commit 972bc58

Browse files
committed
removed heat-map-legend container
1 parent 63573cb commit 972bc58

File tree

4 files changed

+1
-18
lines changed

4 files changed

+1
-18
lines changed

src/app/components/StateRoute/ComponentMap/heatMapLegend.tsx

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/app/containers/MainContainer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
} from '../slices/mainSlice';
2020
import { useDispatch, useSelector } from 'react-redux';
2121
import { MainState, RootState } from '../FrontendTypes';
22-
import HeatMapLegend from '../components/StateRoute/ComponentMap/heatMapLegend';
2322

2423
/*
2524
This is the main container where everything in our application is rendered

src/app/containers/StateContainer.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import StateRoute from '../components/StateRoute/StateRoute';
88
import DiffRoute from '../components/DiffRoute/DiffRoute';
99
import { StateContainerProps } from '../FrontendTypes';
1010
import { Outlet } from 'react-router';
11-
import HeatMapLegend from '../components/StateRoute/ComponentMap/heatMapLegend';
1211

1312
// eslint-disable-next-line react/prop-types
1413
const StateContainer = (props: StateContainerProps): JSX.Element => {
@@ -46,7 +45,6 @@ const StateContainer = (props: StateContainerProps): JSX.Element => {
4645
</NavLink>
4746
</div>
4847
</div>
49-
<HeatMapLegend />
5048
<Routes>
5149
<Route
5250
path='/diff/*'
@@ -70,8 +68,6 @@ const StateContainer = (props: StateContainerProps): JSX.Element => {
7068
snapshots={snapshots}
7169
currLocation={currLocation}
7270
/>
73-
{/* <Outlet/> */}
74-
{/* <HeatMapLegend /> */}
7571
</div>
7672
}
7773
/>

src/app/styles/layout/_bodyContainer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
grid-template-rows: 1fr auto; /* Change to auto for the bottom row */
77
grid-template-areas:
88
'actions states'
9-
'bottom bottom'; /* New bottom area that spans full width */
9+
'bottom bottom';
1010
}
1111

1212
/* if extension width is less than 500px, stack the body containers */

0 commit comments

Comments
 (0)