From 17ec2cdeb78a4169808141ff150f3a872d201d47 Mon Sep 17 00:00:00 2001 From: kiyeong Date: Thu, 28 Nov 2024 01:26:58 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20toast=20=EC=8B=9C=EA=B0=84=20=EC=A7=A7?= =?UTF-8?q?=EA=B2=8C=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MyPage/MyPage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MyPage/MyPage.tsx b/src/MyPage/MyPage.tsx index 44b1369..1cc3f9e 100644 --- a/src/MyPage/MyPage.tsx +++ b/src/MyPage/MyPage.tsx @@ -74,7 +74,7 @@ function MyContentPage(): JSX.Element { title: "데이터를 불러오는 중 오류 발생", description: "데이터를 가져오는 데 실패했습니다.", status: "error", - duration: 3000, + duration: 1000, isClosable: true, position: "top", // Toast 위치 설정 }); @@ -94,7 +94,7 @@ function MyContentPage(): JSX.Element { title: "삭제 성공", description: "콘텐츠가 성공적으로 삭제되었습니다.", status: "success", - duration: 3000, + duration: 1000, isClosable: true, position: "top", // Toast 위치 설정 }); @@ -104,7 +104,7 @@ function MyContentPage(): JSX.Element { title: "삭제 실패", description: "콘텐츠 삭제 중 오류가 발생했습니다.", status: "error", - duration: 3000, + duration: 1000, isClosable: true, position: "top", // Toast 위치 설정 });