Compare commits

...

2 Commits

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]);