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]);