From 73f8448b244bce24656f2b7d2a19dd852964d320 Mon Sep 17 00:00:00 2001 From: bcjang Date: Wed, 26 Mar 2025 15:31:21 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B8=B0=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ServiceManage/modal/OwnerChangeModal.js | 2 +- src/pages/DataManage/LandInfoView.js | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/components/ServiceManage/modal/OwnerChangeModal.js b/src/components/ServiceManage/modal/OwnerChangeModal.js index 986ef58..62d971c 100644 --- a/src/components/ServiceManage/modal/OwnerChangeModal.js +++ b/src/components/ServiceManage/modal/OwnerChangeModal.js @@ -380,7 +380,7 @@ const OwnerChangeModal = ({ modalType, detailView, handleDetailView, content, se ); }; -export const initData = { +const initData = { is_reserve: false, land_id: '', land_name: '', diff --git a/src/pages/DataManage/LandInfoView.js b/src/pages/DataManage/LandInfoView.js index 2802b68..5f717ad 100644 --- a/src/pages/DataManage/LandInfoView.js +++ b/src/pages/DataManage/LandInfoView.js @@ -5,9 +5,6 @@ import React, { Fragment, useRef, useState } from 'react'; import { Title, TableStyle, - BtnWrapper, - ButtonClose, - ModalText, FormWrapper, TableWrapper, } from '../../styles/Components'; @@ -20,23 +17,17 @@ import { useRecoilValue } from 'recoil'; import { useDataFetch, useModal, useTable, withAuth } from '../../utils/hook'; import { authType, - landAuctionStatus, landSize, modalTypes, opLandCategoryType, opLandOwnedType, } from '../../assets/data'; -import { useLandAuctionSearch } from '../../components/ServiceManage/searchBar/LandAuctionSearchBar'; import { INITIAL_PAGE_LIMIT, INITIAL_PAGE_SIZE, TYPE_MODIFY } from '../../assets/data/adminConstants'; import { useTranslation } from 'react-i18next'; import { CheckBox, DynamicModal, ExcelDownButton, Pagination, ViewTableInfo } from '../../components/common'; -import { LandAuctionSearchBar } from '../../components/ServiceManage'; import LandInfoSearchBar, { useLandInfoSearch } from '../../components/ServiceManage/searchBar/LandInfoSearchBar'; -import { convertKTCDate } from '../../utils'; -import Loading from '../../components/common/Loading'; import { TableSkeleton } from '../../components/Skeleton/TableSkeleton'; import OwnerChangeModal from '../../components/ServiceManage/modal/OwnerChangeModal'; -import { StatusLabel, StatusWapper } from '../../styles/ModuleComponents'; import { opLandInfoStatusType } from '../../assets/data/options'; const LandInfoView = () => {