This commit is contained in:
focp212@naver.com
2025-11-12 14:12:18 +09:00
parent 9603c769a6
commit ba116aeaf4
4 changed files with 9 additions and 4 deletions

View File

@@ -216,7 +216,9 @@ export const AmountInfoSection = ({
};
cashReceiptReceiptSendEamil(params).then((rs: CashReceiptReceiptSendEmailResponse) => {
console.log(rs);
snackBar('이메일로 현금영수증 요청이 완료되었습니다.');
if(rs.message){
snackBar(rs.message);
}
}).catch((e: any) => {
if(e.response?.data?.error?.message){
snackBar(e.response?.data?.error?.message);