Skip to content

Commit

Permalink
feat: 시간 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Nov 25, 2024
1 parent b2e2b1a commit bc2a078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Main/components/DetailModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: () => (
Expand All @@ -104,7 +104,7 @@ const DetailModal = ({ isOpen, onClose, content }: DetailModalProps) => {
"_blank",
"noopener,noreferrer"
);
}, 1000);
}, 1500);
} catch (error) {
console.error("시청 기록 저장 요청 중 오류 발생:", error);
}
Expand Down

0 comments on commit bc2a078

Please sign in to comment.