diff options
author | Michael Foiani <sotech117@michaels-mbp-3.lan> | 2021-04-20 01:16:05 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@michaels-mbp-3.lan> | 2021-04-20 01:16:05 -0400 |
commit | ea432d2c59a1ef65343f2085bf4b02bd1937abcf (patch) | |
tree | 7506b46eb53fecca0672eb7f3a0bbd186578a697 /react-frontend/src/components/HubList.js | |
parent | 9a670120b672996ce6865c0e3c66a49119e2b4a9 (diff) |
Making the master frontend stable.
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>; } |