test, deleted system alert

This commit is contained in:
younghoon100.park
2024-07-01 16:02:19 +09:00
parent 5bec0b4666
commit e6b0f90e0f

View File

@@ -402,7 +402,8 @@ export const searchReservation = (chanId) => (dispatch) => {
lunaSend.searchReservation(chanId, {
onSuccess: (res) => {
console.log(res);
dispatch(alertToast(res));
dispatch(alertToast(JSON.stringify(res)));
dispatch(alertToast("searchReservation onSuccessed"));
let items = [];
res.result.forEach((item) => {
@@ -434,7 +435,7 @@ export const searchReservation = (chanId) => (dispatch) => {
},
onFailure: (err) => {
console.log(err);
dispatch(alertToast(err));
dispatch(alertToast("searchReservation failed"));
},
});
};