Skip to content

Commit f22857e

Browse files
committed
cleanup
1 parent cb3141a commit f22857e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

client/src/pages/Home.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ const Home = () => {
1717

1818
const dispatch = useContext(GlobalDispatchContext);
1919
const { poll, profileId, visitor } = useContext(GlobalStateContext);
20-
console.log(poll, " lalala");
2120
const isAdmin = visitor?.isAdmin || false;
2221

2322
// Initial fetch of poll data
2423
useEffect(() => {
25-
console.log(" lalala");
2624
fetchPollData();
2725
}, []);
2826

@@ -43,7 +41,6 @@ const Home = () => {
4341
type: SET_POLL,
4442
payload: { poll },
4543
});
46-
console.log("poll: ", poll);
4744
})
4845
.catch((error) => setErrorMessage(dispatch, error))
4946
.finally(() => setIsLoading(false));

0 commit comments

Comments
 (0)