Skip to content

Commit 0f0b00e

Browse files
committed
removed unnecessary flexbox and div
1 parent c55b13f commit 0f0b00e

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

src/app/containers/ActionContainer.tsx

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -249,19 +249,13 @@ function ActionContainer(props: ActionContainerProps): JSX.Element {
249249
Clear
250250
</Button>
251251
</div>
252-
<div className='MapRouteAndSlider' style={{
253-
display: 'flex',
254-
flexDirection: 'row',
255-
alignItems: 'flex-start',
256-
}}>
257-
<div className='snapshots'>
258-
{dropdownSelection === 'Provider/Consumer' && <ProvConContainer/>}
259-
{dropdownSelection === 'TimeJump' &&
260-
Object.keys(routes).map((route, i) => (
261-
<RouteDescription key={`route${i}`} actions={routes[route]} />
262-
))
263-
}
264-
</div>
252+
<div className='snapshots'>
253+
{dropdownSelection === 'Provider/Consumer' && <ProvConContainer/>}
254+
{dropdownSelection === 'TimeJump' &&
255+
Object.keys(routes).map((route, i) => (
256+
<RouteDescription key={`route${i}`} actions={routes[route]} />
257+
))
258+
}
265259
</div>
266260
</div>
267261
) : null}

0 commit comments

Comments
 (0)