Skip to content

Commit

Permalink
feedback @dwiley-akamai
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-akamai committed Aug 27, 2024
1 parent aa6bbc5 commit d8c5766
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/manager/src/dev-tools/components/Draggable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ interface DraggableProps {
draggable: boolean;
}

export const Draggable: React.FC<DraggableProps> = ({
children,
draggable,
}) => {
export const Draggable = ({ children, draggable }: DraggableProps) => {
const [isDragging, setIsDragging] = useState(false);
const [isResizing, setIsResizing] = useState(false);
const [position, setPosition] = useState({
Expand Down

0 comments on commit d8c5766

Please sign in to comment.