기타 수정

This commit is contained in:
2025-03-26 15:31:21 +09:00
parent ffdfad1223
commit 73f8448b24
2 changed files with 1 additions and 10 deletions

View File

@@ -380,7 +380,7 @@ const OwnerChangeModal = ({ modalType, detailView, handleDetailView, content, se
);
};
export const initData = {
const initData = {
is_reserve: false,
land_id: '',
land_name: '',

View File

@@ -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 = () => {