Skip to content

Commit 219797a

Browse files
committed
fix: lint 수정
1 parent 17d308f commit 219797a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

frontend/src/components/main/LiveVideoCard.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,12 @@ const LiveVideoCard = ({ videoData }: LiveVideoCardProps) => {
2626
liveTitle,
2727
streamUrl
2828
} = videoData;
29-
console.log("videoData", videoData);
29+
3030
const { isHovered, isVideoLoaded, videoRef, handleMouseEnter, handleMouseLeave } = useVideoPreview(streamUrl);
3131

3232
const handleLiveClick = () => {
3333
navigate(`/live/${liveId}`);
3434
};
35-
console.log("liveImageUrl", liveImageUrl);
36-
console.log("defaultThumbnailImageUrl", defaultThumbnailImageUrl);
3735

3836
const handleError = (event: React.SyntheticEvent<HTMLImageElement>) => {
3937
event.currentTarget.src = defaultThumbnailImageUrl

0 commit comments

Comments
 (0)