diff --git a/.changeset/seven-dots-serve.md b/.changeset/seven-dots-serve.md
index f48ab1f19c..80919b5d28 100644
--- a/.changeset/seven-dots-serve.md
+++ b/.changeset/seven-dots-serve.md
@@ -2,33 +2,4 @@
'@backstage/plugin-catalog': minor
---
-Exported `CatalogTable.defaultColumnsFunc` to create a seam for defining the columns in `` of some Kinds while using the default columns for the others.
-This is useful for defining the columns of a custom Kind or to redefine the columns for a built-in Kind.
-
-```diff
-// packages/app/src/App.tsx
-
-import {
- CatalogEntityPage,
- CatalogIndexPage,
- catalogPlugin,
-+ CatalogTable,
-+ CatalogTableColumnsFunc,
-} from '@backstage/plugin-catalog';
-
-+ const myColumnsFunc: CatalogTableColumnsFunc = (entityListContext) => {
-+ if (entityListContext.filters.kind?.value === 'MyKind') {
-+ return [
-+ CatalogTable.columns.createNameColumn(),
-+ CatalogTable.columns.createOwnerColumn()
-+ ];
-+ }
-+
-+ return CatalogTable.defaultColumnsFunc(entityListContext);
-+ };
-
-...
-
-- } />
-+ } />
-```
+Exported `CatalogTable.defaultColumnsFunc` for defining the columns in `` of some Kinds while using the default columns for the others.