Skip to content

Commit 1eed0b2

Browse files
committed
๐Ÿ“ docs: ์ฃผ์„ ์ถ”๊ฐ€
1 parent 36a990a commit 1eed0b2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

โ€Žsrc/components/gathering-list/gathering-list.tsxโ€Ž

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { useMediaQuery } from '@mantine/hooks';
66
import GatheringCard from '@/src/components/common/gathering-card/container';
77
import { GatheringType } from '@/src/types/gathering-data';
88

9+
// TODO: ์ˆ˜์ •์ด ๋งŽ์ด ๋“ค์–ด๊ฐˆ ์˜ˆ์ •์ด๋ผ ๋‹ค๋ฅธ ๋ธŒ๋žœ์น˜์—์„œ ์ˆ˜์ •์˜ˆ์ •
10+
911
/* eslint-disable react/no-array-index-key */
1012

1113
interface 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]')}

0 commit comments

Comments
ย (0)