Skip to content

Commit

Permalink
fix: 빌드에러로 기존에 사용하던 pagination 모두 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
ssssksss committed Sep 2, 2024
1 parent c8e53be commit 2a402fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions src/components/gathering/GatheringTable.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { GatheringDto } from "@/types/GatheringDto";
import { handleKeyDown } from "@/utils/handleKeyDown";
import { useRef } from "react";
import Pagination from "../Pagenation/Pagination";

interface IGatheringTable {
gatheringList: GatheringDto[];
Expand Down Expand Up @@ -118,10 +117,10 @@ const GatheringTable = ({
</div>
</div>
<div className="sticky bottom-0 mb-[1rem] w-[calc(100%)] bg-dark-8 shadow-lg dark:bg-dark-6 dark:text-white">
<Pagination
{/* <Pagination
endPage={Math.ceil(count / 10)}
refetch={changePageHandle}
/>
/> */}
</div>
</div>
);
Expand Down
5 changes: 2 additions & 3 deletions src/components/information/InformationTable.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { InformationDto } from "@/types/InformationDto";
import { handleKeyDown } from "@/utils/handleKeyDown";
import { useRef } from "react";
import Pagination from "../Pagenation/Pagination";

interface IInformationTable {
informationList: InformationDto[];
Expand Down Expand Up @@ -118,10 +117,10 @@ const InformationTable = ({
</div>
</div>
<div className="sticky bottom-0 mb-[1rem] w-[calc(100%)] bg-dark-8 shadow-lg dark:bg-dark-6 dark:text-white">
<Pagination
{/* <Pagination
endPage={Math.ceil(count / 10)}
refetch={changePageHandle}
/>
/> */}
</div>
</div>
);
Expand Down

0 comments on commit 2a402fd

Please sign in to comment.