File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,15 @@ export const CallToAction = ({
18
18
content,
19
19
matomo,
20
20
index,
21
+ className,
21
22
...props
22
23
} : CallToActionProps ) => {
23
24
const handleClick = ( ) => trackCustomEvent ( matomo )
24
25
25
26
const buttonProps : ButtonProps = {
26
27
variant : index === 0 ? "solid" : "outline" ,
27
28
isSecondary : index !== 0 ,
28
- className : cn ( "flex-[1] md:flex-[initial]" , props ?. className ) ,
29
+ className : cn ( "flex-[1] md:flex-[initial]" , className ) ,
29
30
}
30
31
31
32
return (
Original file line number Diff line number Diff line change @@ -61,9 +61,8 @@ const HubHero = ({
61
61
</ Stack >
62
62
< Stack
63
63
className = { cn (
64
- "h-fit flex-col gap-0 md:flex-row" ,
65
- "md:justify-center xl:justify-start" ,
66
- "gap-4"
64
+ "flex-col gap-4 md:flex-row" ,
65
+ "md:justify-center xl:justify-start"
67
66
) }
68
67
>
69
68
{ buttons ?. map ( ( button , idx ) => {
You can’t perform that action at this time.
0 commit comments