diff --git a/packages/manager/src/dev-tools/components/Draggable.tsx b/packages/manager/src/dev-tools/components/Draggable.tsx index ad7cb384b9d..3eb31c5cfbe 100644 --- a/packages/manager/src/dev-tools/components/Draggable.tsx +++ b/packages/manager/src/dev-tools/components/Draggable.tsx @@ -10,10 +10,7 @@ interface DraggableProps { draggable: boolean; } -export const Draggable: React.FC = ({ - children, - draggable, -}) => { +export const Draggable = ({ children, draggable }: DraggableProps) => { const [isDragging, setIsDragging] = useState(false); const [isResizing, setIsResizing] = useState(false); const [position, setPosition] = useState({