diff --git a/src/components/plan/ContentCalendar.tsx b/src/components/plan/ContentCalendar.tsx index 84689b4..c63dca3 100644 --- a/src/components/plan/ContentCalendar.tsx +++ b/src/components/plan/ContentCalendar.tsx @@ -1,6 +1,5 @@ import React, { useState, useCallback } from 'react'; import { exportCalendarToICS } from '../../lib/calendarExport'; -import { motion } from 'motion/react'; import { VideoFilled, FileTextFilled, @@ -313,22 +312,19 @@ export default function ContentCalendar({ data, planId, onEntryUpdate }: Content const Icon = contentTypeIcons[item.type]; const isActive = filterType === item.type; return ( - toggleFilter(item.type)} - initial={{ opacity: 0, y: 10 }} - animate={{ opacity: 1, y: 0 }} - transition={{ duration: 0.3, delay: i * 0.07 }} >
{item.count} {item.label}
-
+ ); })} {filterType && ( @@ -357,12 +353,9 @@ export default function ContentCalendar({ data, planId, onEntryUpdate }: Content } return ( -

{week.label}

@@ -407,7 +400,7 @@ export default function ContentCalendar({ data, planId, onEntryUpdate }: Content 콘텐츠 추가 -
+ ); }) )}