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,24 +1,25 @@
import { Popover, Transition } from '@headlessui/react'
import { ActionButton, ActionButtonProps } from './ActionButton'
import { type IndexLoaderData } from 'lib/types'
import { PATHS } from 'lib/paths'
import { isDesktop } from '../lib/isDesktop'
import { Link, useLocation, useNavigate } from 'react-router-dom'
import { Fragment, useMemo, useContext } from 'react'
import { Logo } from './Logo'
import { APP_NAME } from 'lib/constants'
import { CustomIcon } from './CustomIcon'
import { useLspContext } from './LspProvider'
import { codeManager, engineCommandManager, kclManager } from 'lib/singletons'
import { MachineManagerContext } from 'components/MachineManagerProvider'
import usePlatform from 'hooks/usePlatform'
import { useAbsoluteFilePath } from 'hooks/useAbsoluteFilePath'
import Tooltip from './Tooltip'
import { SnapshotFrom } from 'xstate'
import { commandBarActor } from 'machines/commandBarMachine'
import { useSelector } from '@xstate/react'
import { MachineManagerContext } from 'components/MachineManagerProvider'
import { useAbsoluteFilePath } from 'hooks/useAbsoluteFilePath'
import usePlatform from 'hooks/usePlatform'
import { APP_NAME } from 'lib/constants'
import { copyFileShareLink } from 'lib/links'
import { PATHS } from 'lib/paths'
import { codeManager, engineCommandManager, kclManager } from 'lib/singletons'
import { type IndexLoaderData } from 'lib/types'
import { useToken } from 'machines/appMachine'
import { commandBarActor } from 'machines/commandBarMachine'
import { Fragment, useContext, useMemo } from 'react'
import { Link, useLocation, useNavigate } from 'react-router-dom'
import { SnapshotFrom } from 'xstate'
import { isDesktop } from '../lib/isDesktop'
import { ActionButton, ActionButtonProps } from './ActionButton'
import { CustomIcon } from './CustomIcon'
import { Logo } from './Logo'
import { useLspContext } from './LspProvider'
import Tooltip from './Tooltip'
const ProjectSidebarMenu = ({
project,