Skip to content

Commit c8cbd9a

Browse files
committed
lint fix
1 parent 9a9b5ad commit c8cbd9a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

packages/host/app/components/operator-mode/code-submode/playground-panel.gts

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@ import { service } from '@ember/service';
44
import Component from '@glimmer/component';
55
import { cached, tracked } from '@glimmer/tracking';
66

7-
import type { CardDef } from 'https://cardstack.com/base/card-api';
8-
97
import { LoadingIndicator, BoxelSelect } from '@cardstack/boxel-ui/components';
108

11-
import { ModuleContentsResource } from '@cardstack/host/resources/module-contents';
12-
139
import { getCards, type ResolvedCodeRef } from '@cardstack/runtime-common';
1410

1511
import { getCodeRef, type CardType } from '@cardstack/host/resources/card-type';
12+
import { ModuleContentsResource } from '@cardstack/host/resources/module-contents';
1613

1714
import type RealmServerService from '@cardstack/host/services/realm-server';
1815

16+
import type { CardDef } from 'https://cardstack.com/base/card-api';
17+
1918
const getItemTitle = (item: CardDef, displayName?: string) => {
2019
if (!item) {
2120
return;
@@ -99,7 +98,7 @@ class PlaygroundPanelContent extends Component<PlaygroundContentSignature> {
9998
@cached
10099
private get instances() {
101100
if (this.options?.isLoading) {
102-
return;
101+
return undefined;
103102
}
104103
return this.options.instances;
105104
}

0 commit comments

Comments
 (0)