From c57d52efdf6ca8ce99e9e51fe4dbad6218db0d9e Mon Sep 17 00:00:00 2001 From: toothlessdev Date: Fri, 19 Jan 2024 18:13:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20es-lint=20=EB=B0=B0=ED=8F=AC=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/test-page/LectureRedirectCard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/test-page/LectureRedirectCard.tsx b/src/components/test-page/LectureRedirectCard.tsx index a5e4cfe..4a7a8f5 100644 --- a/src/components/test-page/LectureRedirectCard.tsx +++ b/src/components/test-page/LectureRedirectCard.tsx @@ -3,12 +3,12 @@ import styles from "./LectureRedirectCard.module.scss"; import { faArrowRight } from "@fortawesome/free-solid-svg-icons"; export interface ILectureRedirectCard { - width: string; - height: string; + width?: string; + height?: string; imgSrc: string; label: string; - onClick: React.MouseEventHandler; + onClick?: React.MouseEventHandler; } export const LectureRedirectCard: React.FC = ({ width, height, imgSrc, label, onClick }) => {