From 56d88c2ecca8836c6633de29ad1706fd64608f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Jerna=C5=9B?= Date: Mon, 10 Feb 2025 11:11:50 +0100 Subject: [PATCH] fix(doc): Remove duplicate return statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes duplicate return statement and fixes some trivial grammar issues. Signed-off-by: Łukasz Jernaś --- docs/features/software-catalog/catalog-customization.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/features/software-catalog/catalog-customization.md b/docs/features/software-catalog/catalog-customization.md index c56f763a4e..2aacc22e35 100644 --- a/docs/features/software-catalog/catalog-customization.md +++ b/docs/features/software-catalog/catalog-customization.md @@ -17,7 +17,7 @@ Initial support for pagination of the `CatalogIndexPage` was added in v1.21.0 of ## Initially Selected Filter -By default the initially selected filter defaults to Owned. If you are still building up your catalog this may show an empty list to start. If you would prefer this to show All as the default, here's how you can make that change: +By default, the initially selected filter defaults to Owned. If you are still building up your catalog this may show an empty list to start. If you would prefer this to show All as the default, here's how you can make that change: ```tsx title="packages/app/src/App.tsx" } /> @@ -107,7 +107,6 @@ const createUserEmailColumn = (): TableColumn => ({ const myColumnsFunc: CatalogTableColumnsFunc = entityListContext => { if (entityListContext.filters.kind?.value === 'user') { - return [ return [ // Render existing columns ...CatalogTable.defaultColumnsFunc(entityListContext),