From 0f03ce95e72f26f662fe056e13a8f53c188faa95 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Thu, 18 Apr 2024 11:27:40 +0100 Subject: [PATCH] Remove a console.log --- src/pages/(admin)/Lists/CodeList.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/(admin)/Lists/CodeList.tsx b/src/pages/(admin)/Lists/CodeList.tsx index b8fc3311..f749cc07 100644 --- a/src/pages/(admin)/Lists/CodeList.tsx +++ b/src/pages/(admin)/Lists/CodeList.tsx @@ -18,7 +18,6 @@ const CreatorCell = ({id, users}: {id: string; users: User[]}) => { const [creatorUser, setCreatorUser] = useState(); useEffect(() => { - console.log(id); setCreatorUser(users.find((x) => x.id === id)); }, [id, users]);