diff --git a/src/components/Exercises/InteractiveSpeaking.tsx b/src/components/Exercises/InteractiveSpeaking.tsx index ec457592..bd56190d 100644 --- a/src/components/Exercises/InteractiveSpeaking.tsx +++ b/src/components/Exercises/InteractiveSpeaking.tsx @@ -103,7 +103,6 @@ export default function InteractiveSpeaking({ useEffect(() => { if (userSolutions.length > 0 && answers.length === 0) { - console.log(userSolutions); const solutions = userSolutions as unknown as typeof answers; setAnswers(solutions); @@ -112,10 +111,6 @@ export default function InteractiveSpeaking({ // eslint-disable-next-line react-hooks/exhaustive-deps }, [userSolutions, mediaBlob, answers]); - useEffect(() => { - console.log({answers}); - }, [answers]); - useEffect(() => { if (updateIndex) updateIndex(questionIndex); }, [questionIndex, updateIndex]); diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 041aa7a9..3164a27f 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -79,8 +79,6 @@ export default function Sidebar({path, navDisabled = false, focusMode = false, u const {totalAssignedTickets} = useTicketsListener(userId); - useEffect(() => console.log(totalAssignedTickets), [totalAssignedTickets]); - const logout = async () => { axios.post("/api/logout").finally(() => { setTimeout(() => router.reload(), 500); diff --git a/src/pages/(generation)/SpeakingGeneration.tsx b/src/pages/(generation)/SpeakingGeneration.tsx index 1ba762a2..25d3e70d 100644 --- a/src/pages/(generation)/SpeakingGeneration.tsx +++ b/src/pages/(generation)/SpeakingGeneration.tsx @@ -79,8 +79,6 @@ const PartTab = ({ .finally(() => setIsLoading(false)); }; - useEffect(() => console.log(part), [part]); - return (