From 48b35769bda85a849cb284dd1275d3a336eb2318 Mon Sep 17 00:00:00 2001 From: seung365 Date: Tue, 6 Aug 2024 19:04:56 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=AC=B4=ED=95=9C=EB=A1=9C=EB=94=A9=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Mail/MailModal.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/Mail/MailModal.tsx b/src/components/Mail/MailModal.tsx index 8697eb5..37d927b 100644 --- a/src/components/Mail/MailModal.tsx +++ b/src/components/Mail/MailModal.tsx @@ -100,10 +100,14 @@ export const MailModal = ({ isOpen, onOpen, onClose }: MailModalProps) => { console.log(data); setTitle(data.title || '메일 생성 성공'); setContent(data.content || '메일이 성공적으로 생성되었습니다.'); + setIsSubmitted(true); + setIsLoading(false); }, onError: (error) => { setTitle('메일 생성 실패'); setContent('메일 생성 중 오류가 발생했습니다.'); + setIsSubmitted(true); + setIsLoading(false); }, }, ); @@ -133,10 +137,14 @@ export const MailModal = ({ isOpen, onOpen, onClose }: MailModalProps) => { console.log(data); setTitle(data.title || '메일 생성 성공'); setContent(data.content || '메일이 성공적으로 생성되었습니다.'); + setIsSubmitted(true); + setIsLoading(false); }, onError: (error) => { setTitle('메일 생성 실패'); setContent('메일 생성 중 오류가 발생했습니다.'); + setIsSubmitted(true); + setIsLoading(false); }, }, );