Skip to content

Commit d65d046

Browse files
committed
chore: Remove unused SectionDragHandle export
Flagged by knip as unused. Drag handles are rendered inline in SectionHeader/GroupContainer/TabContainer instead.
1 parent 20a628e commit d65d046

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

packages/app/src/components/DashboardDndComponents.tsx

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -172,27 +172,3 @@ export function SortableSectionWrapper({
172172
</div>
173173
);
174174
}
175-
176-
// --- Section drag handle ---
177-
178-
export function SectionDragHandle(props: DragHandleProps) {
179-
return (
180-
<div
181-
{...props}
182-
style={{
183-
cursor: 'grab',
184-
display: 'flex',
185-
alignItems: 'center',
186-
padding: 2,
187-
flexShrink: 0,
188-
}}
189-
title="Drag to reorder sections"
190-
data-testid="section-drag-handle"
191-
>
192-
<IconGripVertical
193-
size={14}
194-
style={{ color: 'var(--mantine-color-dimmed)' }}
195-
/>
196-
</div>
197-
);
198-
}

0 commit comments

Comments
 (0)