We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af7bfa commit 0ea7f19Copy full SHA for 0ea7f19
apps/web/modules/onboarding/components/OnboardingCard.tsx
@@ -9,8 +9,8 @@ import { SkeletonText } from "@calcom/ui/components/skeleton";
9
type OnboardingCardProps = {
10
title: string;
11
subtitle: string;
12
- children: ReactNode;
13
- footer: ReactNode | null;
+ children?: ReactNode;
+ footer?: ReactNode;
14
isLoading?: boolean;
15
floatingFooter?: boolean;
16
};
@@ -19,8 +19,8 @@ export const OnboardingCard = ({
19
title,
20
subtitle,
21
children,
22
- footer = null,
23
- isLoading = false,
+ footer,
+ isLoading,
24
floatingFooter = false,
25
}: OnboardingCardProps) => {
26
const pathname = usePathname();
0 commit comments