File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/components/gathering-list Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ import { useMediaQuery } from '@mantine/hooks';
66import GatheringCard from '@/src/components/common/gathering-card/container' ;
77import { GatheringType } from '@/src/types/gathering-data' ;
88
9+ // TODO: ์์ ์ด ๋ง์ด ๋ค์ด๊ฐ ์์ ์ด๋ผ ๋ค๋ฅธ ๋ธ๋์น์์ ์์ ์์
10+
911/* eslint-disable react/no-array-index-key */
1012
1113interface GatheringListProps {
@@ -53,9 +55,9 @@ export default function GatheringList({ gatheringData }: GatheringListProps) {
5355 return (
5456 < div className = "mx-auto max-w-[1200px] px-4" >
5557 < div className = "mx-auto grid grid-cols-1 justify-items-center gap-4 md:grid-cols-2 lg:grid-cols-3" >
56- { currentPageData . map ( ( card , id ) => (
58+ { /* { currentPageData.map((card, id) => (
5759 <GatheringCard key={id} {...card} className={cardClassName} />
58- ) ) }
60+ ))} */ }
5961
6062 { /* ๋น ์นด๋๋ฅผ ์ถ๊ฐํ์ฌ ํ์ด์ง๋ค์ด์
์์น๋ฅผ ๊ณ ์ */ }
6163 { isDesktop && totalCards < 4 && renderEmptyCards ( 4 - totalCards , 'w-[380px]' ) }
You canโt perform that action at this time.
0 commit comments