Skip to content

Commit

Permalink
♻️Refactor - 세미나 리스트 tablet, mobile 데이터셋 수정 #40
Browse files Browse the repository at this point in the history
  • Loading branch information
bianbbc87 committed May 5, 2024
1 parent b1d7d08 commit 81224f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/seminar/thumbnail/SeminarThumbnailList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const SeminarThumbnailList = ({ selectedCategory }: { selectedCategory: string }

{/*tablet, mobile인 경우 */}
<div className="desktop:hidden grid tablet:grid-cols-2 grid-cols-1 gap-x-8 gap-y-10">
{SEMINAR_DATA.map((seminar) => (
{filteredData.map((seminar) => (
<motion.section
key={seminar.id}
whileHover={{ scale: 1.05, transition: { duration: 0.3 } }}
Expand Down Expand Up @@ -113,4 +113,4 @@ const SeminarThumbnailList = ({ selectedCategory }: { selectedCategory: string }
);
};
export default SeminarThumbnailList;


0 comments on commit 81224f0

Please sign in to comment.