From 7551d0e04437a3f5441b43d56d7eeec637e7c07d Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sun, 15 Feb 2026 20:32:01 +0200 Subject: [PATCH] ui/cards: fix attribute name --- 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 01b40ee306..224a151504 100644 --- a/apps/client/src/widgets/react/Card.tsx +++ b/apps/client/src/widgets/react/Card.tsx @@ -12,7 +12,7 @@ export interface CardProps { } export function Card(props: {children: ComponentChildren} & CardProps) { - return
+ return
{props.heading &&
{props.heading}
}
{props.children}