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); }, }, );