Removed a console.log

This commit is contained in:
Tiago Ribeiro
2024-11-10 00:18:47 +00:00
parent 7ac15fc767
commit a010a630ac

View File

@@ -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 = () => {