Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Gkrumbach07 committed Sep 20, 2024
1 parent bc8cb52 commit 9ac1d95
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import { Badge, Label, LabelGroup, List, ListItem, Spinner } from '@patternfly/react-core';
import { Label, LabelGroup, Spinner } from '@patternfly/react-core';
import { getDisplayNameFromK8sResource } from '~/concepts/k8s/utils';
import useRelatedNotebooks, { ConnectedNotebookContext } from './useRelatedNotebooks';

Expand Down Expand Up @@ -34,7 +34,9 @@ const ConnectedNotebookNames: React.FC<ConnectedNotebookNamesProps> = ({
return (
<LabelGroup isCompact>
{connectedNotebooks.map((notebook) => (
<Label isCompact key={notebook.metadata.uid}>{getDisplayNameFromK8sResource(notebook)}</Label>
<Label isCompact key={notebook.metadata.uid}>
{getDisplayNameFromK8sResource(notebook)}
</Label>
))}
</LabelGroup>
);
Expand Down

0 comments on commit 9ac1d95

Please sign in to comment.