diff --git a/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContext.tsx b/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContext.tsx index 13fcaa45e3..74afbe087d 100644 --- a/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContext.tsx +++ b/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContext.tsx @@ -1,12 +1,12 @@ -import { useCallback } from 'react'; -import { CardItem } from './CardItem'; -import { styled } from '@toeverything/components/ui'; -import { useKanban } from '@toeverything/components/editor-core'; -import { CardItemPanelWrapper } from './dndable/wrapper/CardItemPanelWrapper'; import type { KanbanCard, KanbanGroup, } from '@toeverything/components/editor-core'; +import { useKanban } from '@toeverything/components/editor-core'; +import { styled } from '@toeverything/components/ui'; +import { useCallback } from 'react'; +import { CardItem } from './CardItem'; +import { CardItemPanelWrapper } from './dndable/wrapper/CardItemPanelWrapper'; const AddCardWrapper = styled('div')({ display: 'flex', @@ -48,7 +48,7 @@ export const CardContext = (props: Props) => { item={item} active={activeId === id} > - + ); diff --git a/libs/components/editor-blocks/src/blocks/group/scene-kanban/dndable/drag-overlay/renderContainerDragOverlay.tsx b/libs/components/editor-blocks/src/blocks/group/scene-kanban/dndable/drag-overlay/renderContainerDragOverlay.tsx index 957ee8599f..b2b1382e5c 100644 --- a/libs/components/editor-blocks/src/blocks/group/scene-kanban/dndable/drag-overlay/renderContainerDragOverlay.tsx +++ b/libs/components/editor-blocks/src/blocks/group/scene-kanban/dndable/drag-overlay/renderContainerDragOverlay.tsx @@ -1,7 +1,6 @@ -import { CardItemWrapper } from '../wrapper/CardItemWrapper'; import { CardItem } from '../../CardItem'; -import type { KanbanCard } from '@toeverything/components/editor-core'; import type { DndableItems } from '../type'; +import { CardItemWrapper } from '../wrapper/CardItemWrapper'; export function renderContainerDragOverlay({ containerId, @@ -18,7 +17,7 @@ export function renderContainerDragOverlay({ return ( } + card={} index={index} /> );