fix: 불필요한 콘솔 로그 제거

This commit is contained in:
정기영 2024-08-12 13:35:36 +09:00
parent 071fa6620a
commit 4604cccb42

View File

@ -24,11 +24,6 @@ export default function LectureForm({ title, topic, to = '..', initialValues = {
if (initialValues.time) timeRef.current.value = initialValues.time;
}, [initialValues]);
useEffect(() => {
console.log(imageFileRef.current.value);
console.log(imageFileRef.current && imageFileRef.current.files[0]);
}, [imageFileRef]);
const handleSubmit = async (e) => {
e.preventDefault();