chatgpt codex + cascade: update

This commit is contained in:
2025-12-28 11:12:59 +02:00
parent cc7b93c658
commit 30a903a2df
9 changed files with 32 additions and 40 deletions

View File

@@ -8,10 +8,7 @@ const Card = React.forwardRef<
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"panel-soft text-card-foreground shadow-sm",
className
)}
className={cn("panel-soft text-card-foreground shadow-sm", className)}
{...props}
/>
));