Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemelia committed Feb 19, 2025
1 parent b1d6e1f commit 304b9ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions packages/host/app/components/ai-assistant/panel.gts
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,13 @@ export default class AiAssistantPanel extends Component<Signature> {
{{else if this.isReady}}
{{! below if statement is covered in 'isReady' check above but added due to glint not realizing it }}
{{#if this.roomResource}}
<Room
@roomId={{this.matrixService.currentRoomId}}
@roomResource={{this.roomResource}}
@monacoSDK={{this.monacoSDK}}
/>
{{#if this.matrixService.currentRoomId}}
<Room
@roomId={{this.matrixService.currentRoomId}}
@roomResource={{this.roomResource}}
@monacoSDK={{this.monacoSDK}}
/>
{{/if}}
{{/if}}
{{else}}
<LoadingIndicator
Expand Down
2 changes: 1 addition & 1 deletion packages/host/app/components/matrix/room.gts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import UpdateSkillActivationCommand from '@cardstack/host/commands/update-skill-
import { Message } from '@cardstack/host/lib/matrix-classes/message';
import type { StackItem } from '@cardstack/host/lib/stack-item';
import { getAutoAttachment } from '@cardstack/host/resources/auto-attached-card';
import { RoomResource, getRoom } from '@cardstack/host/resources/room';
import { RoomResource } from '@cardstack/host/resources/room';

import type CardService from '@cardstack/host/services/card-service';
import type CommandService from '@cardstack/host/services/command-service';
Expand Down

0 comments on commit 304b9ff

Please sign in to comment.