Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Roman <ixrock@gmail.com>
  • Loading branch information
ixrock committed Nov 8, 2021
1 parent cef043d commit ba7f8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/components/+catalog/catalog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ export class Catalog extends React.Component<Props> {
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 }}));
}
};

Expand Down

0 comments on commit ba7f8e7

Please sign in to comment.