From 337cdd737c36f08b52fefa14b9737a68e7443229 Mon Sep 17 00:00:00 2001 From: Michael Coker Date: Tue, 14 Jul 2026 15:34:10 -0500 Subject: [PATCH] chore: fix hero props table --- packages/react-core/src/components/Hero/Hero.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-core/src/components/Hero/Hero.tsx b/packages/react-core/src/components/Hero/Hero.tsx index 88946e29d47..f0cf81cbbf4 100644 --- a/packages/react-core/src/components/Hero/Hero.tsx +++ b/packages/react-core/src/components/Hero/Hero.tsx @@ -53,7 +53,7 @@ export const Hero: React.FunctionComponent = ({ bodyWidth, bodyMaxWidth, ...props -}) => { +}: HeroProps) => { const customStyles: { [key: string]: string } = {}; if (backgroundSrcLight) { customStyles[heroBackgroundImageLight.name] = `url(${backgroundSrcLight})`;