fix(desktop): satisfy eslint import-order rules in use-composer-draft.test.tsx

CI's check:lint failed on two perfectionist rule violations introduced by the
new test file: type import ordering and missing blank line between the
parent-relative and same-directory import groups. No behavior change.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
joaomarcos 2026-07-24 04:19:18 -03:00 committed by Teknium
parent d083d9dacd
commit 66cc0075a2
1 changed files with 2 additions and 1 deletions

View File

@ -2,9 +2,10 @@ import { act, cleanup, render } from '@testing-library/react'
import { useLayoutEffect } from 'react'
import { afterEach, describe, expect, it, vi } from 'vitest'
import { mainComposerScope, stashSessionDraft, type ComposerAttachment } from '@/store/composer'
import { type ComposerAttachment, mainComposerScope, stashSessionDraft } from '@/store/composer'
import type { QueueEditState } from '../composer-utils'
import { useComposerDraft } from './use-composer-draft'
const mockComposerApi = { setText: vi.fn() }