From cb97549e523899f24dbd219d208b00ae5f9aa2d4 Mon Sep 17 00:00:00 2001 From: anjaemin Date: Thu, 17 Nov 2022 15:48:22 +0900 Subject: [PATCH] fix: test code --- src/pages/filelist/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/filelist/index.tsx b/src/pages/filelist/index.tsx index cbe7d63..234d43d 100644 --- a/src/pages/filelist/index.tsx +++ b/src/pages/filelist/index.tsx @@ -12,7 +12,7 @@ import * as S from './styled'; export const FileListPage: React.FC = () => { const navigate = useNavigate(); const [loading, setLoading] = useState(false); - const [listZero, setListZero] = useState(true); //test: true + const [listZero, setListZero] = useState(false); //test: true const SkeletonUIRandomWidth = ['50', '55', '60', '65', '70', '75', '80']; const dispatch = useDispatch(); const { SetDownloadFileProps } = bindActionCreators(actionCreators, dispatch);