From bc2a07833b4908d4ec617db52d618ab1709a693b Mon Sep 17 00:00:00 2001 From: kiyeong Date: Tue, 26 Nov 2024 02:36:41 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=8B=9C=EA=B0=84=20=EC=A1=B0=EC=A0=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Main/components/DetailModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main/components/DetailModal.tsx b/src/Main/components/DetailModal.tsx index b157eb9..60a7edb 100644 --- a/src/Main/components/DetailModal.tsx +++ b/src/Main/components/DetailModal.tsx @@ -80,7 +80,7 @@ const DetailModal = ({ isOpen, onClose, content }: DetailModalProps) => { try { await api.post(`/api/watch/${content.id}`); toast({ - duration: 1500, + duration: 1200, isClosable: true, position: "top", render: () => ( @@ -104,7 +104,7 @@ const DetailModal = ({ isOpen, onClose, content }: DetailModalProps) => { "_blank", "noopener,noreferrer" ); - }, 1000); + }, 1500); } catch (error) { console.error("시청 기록 저장 요청 중 오류 발생:", error); }