From f7b14027900f4abb78800e19302b1342e054c897 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Fri, 29 May 2026 12:17:38 +0000 Subject: [PATCH] Swap coordinator/survey-date columns for outcome notes in Removed from Bookings Removed properties have no coordinator or confirmed survey date by definition, so those columns were always blank. Outcome notes are the field that actually explains why the property dropped out of bookings. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../your-projects/live/ExcludedFromPipelinePanel.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/portfolio/[slug]/(portfolio)/your-projects/live/ExcludedFromPipelinePanel.tsx b/src/app/portfolio/[slug]/(portfolio)/your-projects/live/ExcludedFromPipelinePanel.tsx index 918d92e4..8acf8384 100644 --- a/src/app/portfolio/[slug]/(portfolio)/your-projects/live/ExcludedFromPipelinePanel.tsx +++ b/src/app/portfolio/[slug]/(portfolio)/your-projects/live/ExcludedFromPipelinePanel.tsx @@ -8,16 +8,14 @@ import type { ClassifiedDeal } from "./types"; const REMOVED_FROM_BOOKINGS_COLUMNS: (keyof ClassifiedDeal)[] = [ "dealname", "landlordPropertyId", - "coordinator", - "confirmedSurveyDate", + "outcomeNotes", "propertyHaltedDate", "propertyHaltedReason", ]; const REMOVED_FROM_BOOKINGS_LABELS: Partial> = { dealname: "Address", landlordPropertyId: "Ref", - coordinator: "Coordinator", - confirmedSurveyDate: "Confirmed Survey Date", + outcomeNotes: "Outcome Notes", propertyHaltedDate: "Halted Date", propertyHaltedReason: "Halted Reason", };