diff options
Diffstat (limited to 'react-frontend/src/components/HubList.js')
-rw-r--r-- | react-frontend/src/components/HubList.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/react-frontend/src/components/HubList.js b/react-frontend/src/components/HubList.js index 6d0b3e1..aab7c23 100644 --- a/react-frontend/src/components/HubList.js +++ b/react-frontend/src/components/HubList.js @@ -37,13 +37,6 @@ function HubList(props) { // React hook that updates when the hubs are recalculated useEffect(() => updateHubItems(), [props.data]); - //React hook to show data for an investor - useEffect(() => { - setIsSelected(true); - getName(); - console.log("DEVLOG"); - }, [props.selected]); - return <ul className='Checkin-list'>{hubItems}</ul>; } |