From 7786336cfba8c5e96da35434920f1920b40b00bc Mon Sep 17 00:00:00 2001 From: DMleadgen Date: Thu, 16 Apr 2026 11:40:59 -0600 Subject: [PATCH] fix: simplify CRM sync status messaging --- app/admin/contacts/page.tsx | 3 --- app/admin/conversations/page.tsx | 3 --- app/admin/page.tsx | 3 --- 3 files changed, 9 deletions(-) diff --git a/app/admin/contacts/page.tsx b/app/admin/contacts/page.tsx index 27c3a1ef..77910130 100644 --- a/app/admin/contacts/page.tsx +++ b/app/admin/contacts/page.tsx @@ -91,9 +91,6 @@ export default async function AdminContactsPage({ searchParams }: PageProps) { {!data.sync.ghlConfigured ? ( GHL is not connected. ) : null} - {!data.sync.syncTokenConfigured ? ( - Manual sync endpoint is not configured yet. - ) : null} {data.sync.stages.contacts.error ? ( {data.sync.stages.contacts.error} ) : null} diff --git a/app/admin/conversations/page.tsx b/app/admin/conversations/page.tsx index 48e1ed08..eac2fdbd 100644 --- a/app/admin/conversations/page.tsx +++ b/app/admin/conversations/page.tsx @@ -97,9 +97,6 @@ export default async function AdminConversationsPage({ {!data.sync.ghlConfigured ? ( GHL is not connected. ) : null} - {!data.sync.syncTokenConfigured ? ( - Manual sync endpoint is not configured yet. - ) : null} {data.sync.stages.conversations.error ? ( {data.sync.stages.conversations.error} ) : null} diff --git a/app/admin/page.tsx b/app/admin/page.tsx index 49c54a9a..e1b31cbe 100644 --- a/app/admin/page.tsx +++ b/app/admin/page.tsx @@ -256,9 +256,6 @@ export default async function AdminDashboard() { {sync.overallStatus} Last sync: {formatTimestamp(sync.latestSyncAt)} {!sync.ghlConfigured ? GHL is not connected. : null} - {!sync.syncTokenConfigured ? ( - Manual sync endpoint is not configured yet. - ) : null} {!sync.livekitConfigured ? ( LiveKit recordings are not connected yet. ) : null}