diff --git a/web/src/components/storage/DriveEditor.tsx b/web/src/components/storage/DriveEditor.tsx index 396184bba3..e6c6626257 100644 --- a/web/src/components/storage/DriveEditor.tsx +++ b/web/src/components/storage/DriveEditor.tsx @@ -568,10 +568,14 @@ const PartitionsNoContentSelector = () => { }; const PartitionsWithContentSelector = ({ drive }) => { + console.log("DRIVEVV:", drive); const menuRef = useRef(); const toggleMenuRef = useRef(); const [isOpen, setIsOpen] = useState(false); const onToggle = () => setIsOpen(!isOpen); + const onDelete = () => { + console.log("DELETE CLICKED YAY"); + }; return ( { icon={} actionId={`delete-${partition.mountPath}`} aria-label={`Delete ${partition.mountPath}`} + onClick={onDelete} /> }