Skip to content

Commit 50ad67c

Browse files
committed
yarn prettier -c ./src
1 parent 49702e0 commit 50ad67c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/Router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { HARBOR_ANNOTATION_REPOSITORY } from "./components/useHarborAppData";
77
import { isHarborAvailable } from "./plugin";
88

99
export const Router = ({ entity }: { entity: Entity }) => {
10-
return !isHarborAvailable(entity) ? (
10+
return !isHarborAvailable(entity) ? (
1111
<MissingAnnotationEmptyState annotation={HARBOR_ANNOTATION_REPOSITORY} />
1212
) : (
1313
<Routes>

src/components/HarborWidget.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,10 @@ export const HarborWidget = () => {
3232
);
3333
};
3434

35-
3635
export const HarborWidgetEntity = ({ entity }: { entity: Entity }) => {
3736
return !isHarborAvailable(entity) ? (
3837
<MissingAnnotationEmptyState annotation={HARBOR_ANNOTATION_REPOSITORY} />
3938
) : (
4039
<Widget entity={entity} />
4140
);
4241
};
43-
44-

0 commit comments

Comments
 (0)