This commit is contained in:
focp212@naver.com
2025-11-20 09:36:26 +09:00
parent ed23046356
commit 72e57a9250
6 changed files with 25 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
import moment from 'moment';
import { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { useStore } from '@/shared/model/store';
import { useDetailOnStore, useStore } from '@/shared/model/store';
import { IMAGE_ROOT } from '@/shared/constants/common';
import { PATHS } from '@/shared/constants/paths';
import { useNavigate } from '@/shared/lib/hooks/use-navigate';
@@ -74,7 +74,7 @@ export const BillingListPage = () => {
const [downloadBottomSheetOn, setDownloadBottomSheetOn] = useState<boolean>(false);
const [detailOn, setDetailOn] = useState<boolean>(false);
const { detailOn, setDetailOn } = useDetailOnStore();
const [detailTid, setDetailTid] = useState<string>('');
const [filterUsed, setFilterUsed] = useState<boolean>(false);