sort imports (#6094)

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2025-04-01 14:20:42 -07:00
committed by GitHub
parent ee20a09e7e
commit 2fc8cb5376
342 changed files with 3008 additions and 2699 deletions

View File

@ -1,23 +1,24 @@
import { UnitLength_type } from '@kittycad/lib/dist/types/src/models'
import { CommandBarOverwriteWarning } from 'components/CommandBarOverwriteWarning'
import {
changeKclSettings,
unitAngleToUnitAng,
unitLengthToUnitLen,
} from 'lang/wasm'
import toast from 'react-hot-toast'
import { Command, CommandArgumentOption } from './commandTypes'
import { codeManager, kclManager } from './singletons'
import { isDesktop } from './isDesktop'
import {
DEFAULT_DEFAULT_ANGLE_UNIT,
DEFAULT_DEFAULT_LENGTH_UNIT,
FILE_EXT,
} from './constants'
import { UnitLength_type } from '@kittycad/lib/dist/types/src/models'
import { err, reportRejection } from './trap'
import { IndexLoaderData } from './types'
import { isDesktop } from './isDesktop'
import { copyFileShareLink } from './links'
import { baseUnitsUnion } from './settings/settingsTypes'
import toast from 'react-hot-toast'
import {
changeKclSettings,
unitLengthToUnitLen,
unitAngleToUnitAng,
} from 'lang/wasm'
import { codeManager, kclManager } from './singletons'
import { err, reportRejection } from './trap'
import { IndexLoaderData } from './types'
interface OnSubmitProps {
sampleName: string