From 2e2a5bca116b109c8d8ad1353e352ad5d7ffdef8 Mon Sep 17 00:00:00 2001 From: Tom Ratcliffe Date: Thu, 7 Mar 2024 15:10:29 +0000 Subject: [PATCH] Remove unused `showWelcomeHeader` prop --- public/app/features/alerting/unified/home/GettingStarted.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/app/features/alerting/unified/home/GettingStarted.tsx b/public/app/features/alerting/unified/home/GettingStarted.tsx index a37594cce7a..fab54bb8029 100644 --- a/public/app/features/alerting/unified/home/GettingStarted.tsx +++ b/public/app/features/alerting/unified/home/GettingStarted.tsx @@ -20,13 +20,12 @@ export const getOverviewScene = () => { }); }; -export default function GettingStarted({ showWelcomeHeader }: { showWelcomeHeader?: boolean }) { +export default function GettingStarted() { const theme = useTheme2(); const styles = useStyles2(getWelcomePageStyles); return (
- {showWelcomeHeader && }

How it works