test, deleted system alert

This commit is contained in:
younghoon100.park
2024-07-01 18:43:06 +09:00
parent 75fddad16b
commit 113ca3ac46
2 changed files with 3 additions and 3 deletions

View File

@@ -398,7 +398,7 @@ export const deleteReservation = (scheduleIdList) => (dispatch) => {
});
};
export const searchReservation = (chanId) => (dispatch) => {
export const searchReservation = (showId) => (dispatch) => {
lunaSend.searchReservation({
onSuccess: (res) => {
let items = [];
@@ -411,7 +411,7 @@ export const searchReservation = (chanId) => (dispatch) => {
});
});
let index = items.findIndex((item) => item.chanId === chanId);
let index = items.findIndex((item) => item.showId === showId);
let deletedIdList = [];
if (index !== -1) {

View File

@@ -102,7 +102,7 @@ export const setMainLiveUpcomingAlarm = (props) => (dispatch, getState) => {
}
//
else if (alamDispFlag === "N") {
dispatch(searchReservation(chanId));
dispatch(searchReservation(showId));
}
};