From 5d9cec9d6bb3fd0b60eb050e12ed62db37d21f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=B1=EA=B2=BD?= Date: Thu, 16 Jul 2026 13:37:44 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8D=B8=EB=84=A4=EC=9D=BC=20=EC=A0=81?= =?UTF-8?q?=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Dashboard/MyContentsPage.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/Dashboard/MyContentsPage.tsx b/src/pages/Dashboard/MyContentsPage.tsx index b479c41..4913a0c 100644 --- a/src/pages/Dashboard/MyContentsPage.tsx +++ b/src/pages/Dashboard/MyContentsPage.tsx @@ -9,7 +9,7 @@ import ContentCardSocialActions from '../../components/ContentCardSocialActions' import { useTutorial } from '../../components/Tutorial/useTutorial'; import { TUTORIAL_KEYS } from '../../components/Tutorial/tutorialSteps'; -const VideoPreviewCard: React.FC<{ src: string; className?: string }> = ({ src, className }) => { +const VideoPreviewCard: React.FC<{ src: string; poster?: string; className?: string }> = ({ src, poster, className }) => { const videoRef = useRef(null); const isPlayingRef = useRef(false); const pendingPlayRef = useRef(false); @@ -75,6 +75,7 @@ const VideoPreviewCard: React.FC<{ src: string; className?: string }> = ({ src,