From ba7f8e7ce38df0476a5d09caedd026e94c867577 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 8 Nov 2021 19:16:25 +0200 Subject: [PATCH] fix lint Signed-off-by: Roman --- src/renderer/components/+catalog/catalog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/+catalog/catalog.tsx b/src/renderer/components/+catalog/catalog.tsx index 2ea62c89a3..62b3258f6d 100644 --- a/src/renderer/components/+catalog/catalog.tsx +++ b/src/renderer/components/+catalog/catalog.tsx @@ -167,9 +167,9 @@ export class Catalog extends React.Component { const activeCategory = this.categories.find(category => category.getId() === tabId); if (activeCategory) { - navigate(catalogURL({ params: { group: activeCategory.spec.group, kind: activeCategory.spec.names.kind } })); + navigate(catalogURL({ params: { group: activeCategory.spec.group, kind: activeCategory.spec.names.kind }})); } else { - navigate(catalogURL({ params: { group: browseCatalogTab } })); + navigate(catalogURL({ params: { group: browseCatalogTab }})); } };