diff --git a/frontend/components/hosts/HostDetails/HostDetails.jsx b/frontend/components/hosts/HostDetails/HostDetails.jsx
index 4552e5bec..bb070134c 100644
--- a/frontend/components/hosts/HostDetails/HostDetails.jsx
+++ b/frontend/components/hosts/HostDetails/HostDetails.jsx
@@ -1,5 +1,4 @@
import React, { PropTypes } from 'react';
-import { noop } from 'lodash';
import Button from 'components/buttons/Button';
import hostInterface from 'interfaces/host';
@@ -14,7 +13,7 @@ export const STATUSES = {
offline: 'OFFLINE',
};
-const HostDetails = ({ host, onQueryClick = noop }) => {
+const HostDetails = ({ host, onDestroyHost }) => {
const {
hostname,
ip,
@@ -28,9 +27,9 @@ const HostDetails = ({ host, onQueryClick = noop }) => {
return (
-
-