From 61953fd7132ebee7e6e06f77357cf43213b23582 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 14 Feb 2026 00:10:54 +0200 Subject: [PATCH] client/ui/cards: make a property optional --- apps/client/src/widgets/react/Card.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/react/Card.tsx b/apps/client/src/widgets/react/Card.tsx index 1573c2fe0b..34eea094af 100644 --- a/apps/client/src/widgets/react/Card.tsx +++ b/apps/client/src/widgets/react/Card.tsx @@ -18,7 +18,7 @@ interface CardSectionProps { className?: string; subSections?: JSX.Element | JSX.Element[]; childrenVisible?: boolean; - hasAction: boolean; + hasAction?: boolean; onAction?: () => void; }