diff --git a/taskncoffee-app/src/components/Calendar.jsx b/taskncoffee-app/src/components/Calendar.jsx index 04626be..3982a03 100644 --- a/taskncoffee-app/src/components/Calendar.jsx +++ b/taskncoffee-app/src/components/Calendar.jsx @@ -93,7 +93,7 @@ export default function Calendar() { "bg-card/30 backdrop-blur-md p-6 rounded-2xl flex-[3]", styles.utility.transitionSlow )}> -
+
{daysOfWeek.map((day) => { const isToday = day.fullDate.toDateString() === today.toDateString(); @@ -101,7 +101,7 @@ export default function Calendar() {

{day.month} {day.date} @@ -131,7 +132,6 @@ export default function Calendar() { key={task.id} className={cn( styles.card.task, - "neon-glow-soft", task.completed && "opacity-60 line-through" )} > @@ -139,7 +139,7 @@ export default function Calendar() { {/* Priority indicator */} ))} - {/* Empty state */} - {day.tasks.length === 0 && ( -

- No tasks -

- )} {/* Add button */}