File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { HARBOR_ANNOTATION_REPOSITORY } from "./components/useHarborAppData";
77import { isHarborAvailable } from "./plugin" ;
88
99export const Router = ( { entity } : { entity : Entity } ) => {
10- return ! isHarborAvailable ( entity ) ? (
10+ return ! isHarborAvailable ( entity ) ? (
1111 < MissingAnnotationEmptyState annotation = { HARBOR_ANNOTATION_REPOSITORY } />
1212 ) : (
1313 < Routes >
Original file line number Diff line number Diff line change @@ -32,13 +32,10 @@ export const HarborWidget = () => {
3232 ) ;
3333} ;
3434
35-
3635export const HarborWidgetEntity = ( { entity } : { entity : Entity } ) => {
3736 return ! isHarborAvailable ( entity ) ? (
3837 < MissingAnnotationEmptyState annotation = { HARBOR_ANNOTATION_REPOSITORY } />
3938 ) : (
4039 < Widget entity = { entity } />
4140 ) ;
4241} ;
43-
44-
You can’t perform that action at this time.
0 commit comments