From 63bca3637e6c6f524462ea5cccaec31ee262dbe1 Mon Sep 17 00:00:00 2001 From: Alberto Dainotti Date: Wed, 11 Mar 2026 12:49:40 -0400 Subject: [PATCH] fix: skip title property in list-view body to prevent duplicate text When list_properties includes the title property, it renders a second copy of the page title in the list item body (it's already shown in the header). Filter it out to prevent duplication. --- .../react-notion-x/src/third-party/collection-view-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-notion-x/src/third-party/collection-view-list.tsx b/packages/react-notion-x/src/third-party/collection-view-list.tsx index 655a4f6a..b36a1919 100644 --- a/packages/react-notion-x/src/third-party/collection-view-list.tsx +++ b/packages/react-notion-x/src/third-party/collection-view-list.tsx @@ -102,7 +102,7 @@ function List({
{collectionView.format?.list_properties - ?.filter((p: any) => p.visible) + ?.filter((p: any) => p.visible && p.property !== 'title') .map((p: any) => { const schema = collection.schema[p.property] const data =