From a010a630aced19aa231f6bf01ef9dad9371a43ec Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Sun, 10 Nov 2024 00:18:47 +0000 Subject: [PATCH] Removed a console.log --- src/pages/official-exam.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pages/official-exam.tsx b/src/pages/official-exam.tsx index edc397f4..cec8d644 100644 --- a/src/pages/official-exam.tsx +++ b/src/pages/official-exam.tsx @@ -29,7 +29,7 @@ import { uniqBy } from "lodash"; import moment from "moment"; import Head from "next/head"; import { useRouter } from "next/router"; -import { useEffect, useMemo, useState } from "react"; +import { useMemo, useState } from "react"; import { BsArrowRepeat } from "react-icons/bs"; import { ToastContainer } from "react-toastify"; @@ -74,8 +74,6 @@ const destination = Buffer.from("/official-exam").toString("base64") export default function OfficialExam({ user, entities, assignments, sessions, exams }: Props) { const [isLoading, setIsLoading] = useState(false) - useEffect(() => console.log(assignments), [assignments]) - const router = useRouter(); const state = useExamStore((state) => state); const reload = () => {