From 143c256a93a646f73fff52ec9c3d3f5a85d65b8b Mon Sep 17 00:00:00 2001 From: Alejandro Fraenkel Date: Tue, 13 Jan 2026 01:01:02 +0100 Subject: [PATCH] fix: remove unused imports in Home.tsx --- public/app/features/alerting/unified/home/Home.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/app/features/alerting/unified/home/Home.tsx b/public/app/features/alerting/unified/home/Home.tsx index 7afef763129..483e58da26a 100644 --- a/public/app/features/alerting/unified/home/Home.tsx +++ b/public/app/features/alerting/unified/home/Home.tsx @@ -4,12 +4,11 @@ import { t } from '@grafana/i18n'; import { Box, Stack, Tab, TabContent, TabsBar } from '@grafana/ui'; import { AlertingPageWrapper } from '../components/AlertingPageWrapper'; -import { isLocalDevEnv } from '../utils/misc'; import { withPageErrorBoundary } from '../withPageErrorBoundary'; import GettingStarted, { WelcomeHeader } from './GettingStarted'; import IRMCard from './IRMCard'; -import { getInsightsScenes, insightsIsAvailable } from './Insights'; +import { getInsightsScenes } from './Insights'; import { PluginIntegrations } from './PluginIntegrations'; import SyntheticMonitoringCard from './SyntheticMonitoringCard';