+
{days.map((d) => {
const key = format(d, "yyyy-MM-dd");
const dayEvts = eventsByDay.get(key) ?? [];
@@ -717,8 +722,9 @@ function MonthGrid({
key={key}
onClick={() => onSelectDay(d)}
onDoubleClick={() => onCreateOnDay(d)}
+ style={{ minHeight: 100 }}
className={cn(
- "min-h-[100px] border-b border-r p-1.5 cursor-pointer transition-colors",
+ "border-b border-r p-1.5 cursor-pointer transition-colors",
"hover:bg-accent/40",
!inMonth && "bg-muted/30 text-muted-foreground",
isSel && "ring-1 ring-primary ring-inset",