File tree 1 file changed +4
-5
lines changed
packages/host/app/components/operator-mode/code-submode
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,17 @@ import { service } from '@ember/service';
4
4
import Component from ' @glimmer/component' ;
5
5
import { cached , tracked } from ' @glimmer/tracking' ;
6
6
7
- import type { CardDef } from ' https://cardstack.com/base/card-api' ;
8
-
9
7
import { LoadingIndicator , BoxelSelect } from ' @cardstack/boxel-ui/components' ;
10
8
11
- import { ModuleContentsResource } from ' @cardstack/host/resources/module-contents' ;
12
-
13
9
import { getCards , type ResolvedCodeRef } from ' @cardstack/runtime-common' ;
14
10
15
11
import { getCodeRef , type CardType } from ' @cardstack/host/resources/card-type' ;
12
+ import { ModuleContentsResource } from ' @cardstack/host/resources/module-contents' ;
16
13
17
14
import type RealmServerService from ' @cardstack/host/services/realm-server' ;
18
15
16
+ import type { CardDef } from ' https://cardstack.com/base/card-api' ;
17
+
19
18
const getItemTitle = (item : CardDef , displayName ? : string ) => {
20
19
if (! item ) {
21
20
return ;
@@ -99,7 +98,7 @@ class PlaygroundPanelContent extends Component<PlaygroundContentSignature> {
99
98
@cached
100
99
private get instances() {
101
100
if (this .options ?.isLoading ) {
102
- return ;
101
+ return undefined ;
103
102
}
104
103
return this .options .instances ;
105
104
}
You can’t perform that action at this time.
0 commit comments