This commit is contained in:
focp212@naver.com
2025-11-07 14:04:21 +09:00
parent 45cee4b53e
commit e5342f1d0a
35 changed files with 330 additions and 94 deletions

View File

@@ -135,6 +135,11 @@ export const LinkPaymentHistoryWrap = () => {
&& rs.nextCursor !== pageParam.cursor
&& rs.content.length === DEFAULT_PAGE_PARAM.size
);
}).catch((e: any) => {
if(e.response?.data?.error?.message){
showAlert(e.response?.data?.error?.message);
return;
}
});
};
@@ -161,7 +166,12 @@ export const LinkPaymentHistoryWrap = () => {
sendMethod: sendMethod,
}).then((rs) => {
console.log('Excel Download Status: ' + rs.status);
});
}).catch((e: any) => {
if(e.response?.data?.error?.message){
showAlert(e.response?.data?.error?.message);
return;
}
});
}
setEmailBottomSheetOn(false);
};