From c2f1b2d8f5c9814c3328555fc364d1360518c872 Mon Sep 17 00:00:00 2001
From: Artem Baskal <a.baskal@adguard.com>
Date: Thu, 19 Dec 2019 11:15:19 +0300
Subject: [PATCH] - client: delete whois column in the statis cients table

---
 client/src/components/Settings/Clients/ClientsTable.js | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/client/src/components/Settings/Clients/ClientsTable.js b/client/src/components/Settings/Clients/ClientsTable.js
index 058cd96d..280b3953 100644
--- a/client/src/components/Settings/Clients/ClientsTable.js
+++ b/client/src/components/Settings/Clients/ClientsTable.js
@@ -9,8 +9,6 @@ import Card from '../../ui/Card';
 import Modal from './Modal';
 import WrapCell from './WrapCell';
 
-import whoisCell from './whoisCell';
-
 class ClientsTable extends Component {
     handleFormAdd = (values) => {
         this.props.addClient(values);
@@ -169,12 +167,6 @@ class ClientsTable extends Component {
                 );
             },
         },
-        {
-            Header: this.props.t('whois'),
-            accessor: 'whois_info',
-            minWidth: 200,
-            Cell: whoisCell(this.props.t),
-        },
         {
             Header: this.props.t('requests_count'),
             accessor: 'statistics',