From 31d28085e173fecf42c3a72df272477e5a92f5ce Mon Sep 17 00:00:00 2001 From: tintinthong Date: Sun, 2 Feb 2025 08:48:38 +0800 Subject: [PATCH] fix lint --- packages/host/app/components/operator-mode/code-submode.gts | 4 ++-- .../operator-mode/code-submode/boxel-spec-preview.gts | 2 +- .../host/app/components/operator-mode/create-file-modal.gts | 2 +- .../host/app/components/operator-mode/edit-field-modal.gts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/host/app/components/operator-mode/code-submode.gts b/packages/host/app/components/operator-mode/code-submode.gts index e203a29b42..abb0bb0717 100644 --- a/packages/host/app/components/operator-mode/code-submode.gts +++ b/packages/host/app/components/operator-mode/code-submode.gts @@ -58,8 +58,8 @@ import type OperatorModeStateService from '@cardstack/host/services/operator-mod import type RealmService from '@cardstack/host/services/realm'; import type RecentFilesService from '@cardstack/host/services/recent-files-service'; -import type { CardDef, Format } from 'https://cardstack.com/base/card-api'; import { type SpecType } from 'https://cardstack.com/base/boxel-spec'; +import type { CardDef, Format } from 'https://cardstack.com/base/card-api'; import { htmlComponent } from '../../lib/html-component'; import { CodeModePanelWidths } from '../../utils/local-storage-keys'; @@ -70,11 +70,11 @@ import CardErrorDetail from './card-error-detail'; import CardPreviewPanel from './card-preview-panel/index'; import CardURLBar from './card-url-bar'; import CodeEditor from './code-editor'; +import SpecPreview from './code-submode/boxel-spec-preview'; import InnerContainer from './code-submode/inner-container'; import CodeSubmodeLeftPanelToggle from './code-submode/left-panel-toggle'; import PlaygroundPanel from './code-submode/playground-panel'; import SchemaEditor, { SchemaEditorTitle } from './code-submode/schema-editor'; -import SpecPreview from './code-submode/boxel-spec-preview'; import CreateFileModal, { type FileType } from './create-file-modal'; import DeleteModal from './delete-modal'; import DetailPanel from './detail-panel'; diff --git a/packages/host/app/components/operator-mode/code-submode/boxel-spec-preview.gts b/packages/host/app/components/operator-mode/code-submode/boxel-spec-preview.gts index 7a79335033..836510a978 100644 --- a/packages/host/app/components/operator-mode/code-submode/boxel-spec-preview.gts +++ b/packages/host/app/components/operator-mode/code-submode/boxel-spec-preview.gts @@ -41,8 +41,8 @@ import RealmService from '@cardstack/host/services/realm'; import type RealmServerService from '@cardstack/host/services/realm-server'; -import { type CardDef } from 'https://cardstack.com/base/card-api'; import { Spec, type SpecType } from 'https://cardstack.com/base/boxel-spec'; +import { type CardDef } from 'https://cardstack.com/base/card-api'; import { type FileType } from '../create-file-modal'; diff --git a/packages/host/app/components/operator-mode/create-file-modal.gts b/packages/host/app/components/operator-mode/create-file-modal.gts index 9f886156c9..9125ffc420 100644 --- a/packages/host/app/components/operator-mode/create-file-modal.gts +++ b/packages/host/app/components/operator-mode/create-file-modal.gts @@ -41,10 +41,10 @@ import { getCard } from '@cardstack/host/resources/card-resource'; import type RealmService from '@cardstack/host/services/realm'; -import type { CardDef } from 'https://cardstack.com/base/card-api'; import type { Spec } from 'https://cardstack.com/base/boxel-spec'; import { type SpecType } from 'https://cardstack.com/base/boxel-spec'; +import type { CardDef } from 'https://cardstack.com/base/card-api'; import { cleanseString } from '../../lib/utils'; diff --git a/packages/host/app/components/operator-mode/edit-field-modal.gts b/packages/host/app/components/operator-mode/edit-field-modal.gts index 1e1f3b55ce..adf7808c0b 100644 --- a/packages/host/app/components/operator-mode/edit-field-modal.gts +++ b/packages/host/app/components/operator-mode/edit-field-modal.gts @@ -40,8 +40,8 @@ import OperatorModeStateService from '@cardstack/host/services/operator-mode-sta import type RealmService from '@cardstack/host/services/realm'; -import type { BaseDef, FieldType } from 'https://cardstack.com/base/card-api'; import type { Spec } from 'https://cardstack.com/base/boxel-spec'; +import type { BaseDef, FieldType } from 'https://cardstack.com/base/card-api'; import { SelectedTypePill } from './create-file-modal';