사용자관리 페이지 조회 로그 중복 오류 수정.

thkim
강석 최 2024-03-05 09:41:34 +09:00
parent 5b49f4ec85
commit 43d6706469
2 changed files with 0 additions and 5 deletions

View File

@ -32,7 +32,6 @@ function MenuModal({savedInfo, reloadFunction}){
body: JSON.stringify(info) body: JSON.stringify(info)
}, },
(resp) => { (resp) => {
debugger
if (Number(resp.resultCode) === Number(CODE.RCV_SUCCESS)) { if (Number(resp.resultCode) === Number(CODE.RCV_SUCCESS)) {
alert("저장되었습니다.") alert("저장되었습니다.")
reloadFunction(); reloadFunction();

View File

@ -64,10 +64,6 @@ function List({}) {
); );
},[]); },[]);
useEffect(() => {
retrieveList(searchCondition);
}, []);
useEffect(() => { useEffect(() => {
retrieveList(searchCondition); retrieveList(searchCondition);
}, [searchCondition.pageIndex]); }, [searchCondition.pageIndex]);