fix(analytics): remove orphaned QueriesReviewPanel import

AnalyticsView.tsx imported and rendered QueriesReviewPanel, but that
component file was never added in any commit -- the import has been
dangling since it was introduced, breaking the production build with
"Module not found: Can't resolve './QueriesReviewPanel'".

Removes the import and its render block. The Queries/Review-with-Landlord
row can be reintroduced once the component actually exists.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jun-te Kim 2026-07-17 15:04:43 +00:00
parent ddff8366cb
commit 9c8184d48b

View file

@ -7,7 +7,6 @@ import { Card, CardContent } from "@/app/shadcn_components/ui/card";
import DampMouldRiskPanel from "./DampMouldRiskPanel";
import CompletionTrendsChart from "./CompletionTrendsChart";
import SurveyIssuesPanel from "./SurveyIssuesPanel";
import QueriesReviewPanel from "./QueriesReviewPanel";
import ExcludedFromPipelinePanel from "./ExcludedFromPipelinePanel";
import GroupFilter, { type GroupNode } from "./GroupFilter";
import { STAGE_COLORS, STAGE_ORDER } from "./types";
@ -431,13 +430,7 @@ export default function AnalyticsView({
onOpenTable={onOpenTable}
/>
{/* Row 7: Queries / Review with Landlord (parked but still in programme) */}
<QueriesReviewPanel
deals={currentProject.allDeals}
onOpenTable={onOpenTable}
/>
{/* Row 8: Excluded from Pipeline (Removed from Bookings / Removed from Program) */}
{/* Row 7: Excluded from Pipeline (Removed from Bookings / Removed from Program) */}
<ExcludedFromPipelinePanel
deals={currentProject.allDeals}
onOpenTable={onOpenTable}