clean up, system alert

This commit is contained in:
younghoon100.park
2024-07-01 19:15:07 +09:00
parent abfc17e27d
commit e381632aa9
4 changed files with 21 additions and 66 deletions

View File

@@ -7,7 +7,6 @@ import {
addReservation,
changeAppStatus,
deleteReservation,
searchReservation,
} from "./commonActions";
export const getMainLiveShow = (props) => (dispatch, getState) => {
@@ -89,20 +88,11 @@ export const setMainLiveUpcomingAlarm = (props) => (dispatch, getState) => {
},
};
dispatch(
addReservation(data, {
onSuccess: (res) => {
console.log("LUNA SEND addReservation success", res);
},
onFailure: (err) => {
console.log("LUNA SEND addReservation failed", err);
},
})
);
dispatch(addReservation(data));
}
//
else if (alamDispFlag === "N") {
dispatch(searchReservation(showId));
dispatch(deleteReservation(showId));
}
};