Skip to content

Commit

Permalink
feature-057: 빌드 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
whistleJs committed Feb 15, 2024
1 parent a432f04 commit 70f51f6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/Home/InsightVideos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ const InsightVideos: React.FC<InsightVideosProps> = ({

const endBox = useRef<HTMLDivElement>(null);

const onFileClick = async (
e: React.MouseEvent,
videoId: number,
categoryId: number,
) => {
e.stopPropagation();
const onFileClick = async (videoId: number, categoryId: number) => {
const res = await createDummyVideoToMine(videoId, categoryId);
if (res.isSuccess)
await getUnReadDummyVideos().then((res) =>
Expand Down

0 comments on commit 70f51f6

Please sign in to comment.