Skip to content

Commit 80d9880

Browse files
committed
Connected my code with dev
1 parent 5a89b32 commit 80d9880

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed

src/app/components/Actions/DropDown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react';
33

44
const DropDown = ({ dropdownSelection, setDropdownSelection }: { dropdownSelection: string; setDropdownSelection: (value: string) => void }): JSX.Element => {
55
const handleChange = (selected: { value: string; label: string }) => {
6-
setDropdownSelection(selected.value); // Update parent state
6+
setDropdownSelection(selected.value);
77
};
88

99
const options = [

src/app/containers/ActionContainer.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,6 @@ function ActionContainer(props: ActionContainerProps): JSX.Element {
247247
Clear
248248
</Button>
249249
</div>
250-
{/* Rendering of route description components */}
251-
{/* {Object.keys(routes).map((route, i) => (
252-
<RouteDescription key={`route${i}`} actions={routes[route]} />
253-
))} */}
254-
{/* <ProvConContainer/> */}
255-
256250
{dropdownSelection === 'Provider/Consumer' && <ProvConContainer/>}
257251
{dropdownSelection === 'TimeJump' &&
258252
Object.keys(routes).map((route, i) => (

src/app/containers/ReduceContainer.tsx

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

0 commit comments

Comments
 (0)