From 9096f8f428fe6424aa19a23a83e7c5586bab019f Mon Sep 17 00:00:00 2001 From: Javi Velasco Date: Thu, 12 Nov 2015 01:18:54 +0100 Subject: [PATCH] Remove unused event variable in table component --- components/table/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/table/index.jsx b/components/table/index.jsx index ee161ba6..013bc96a 100644 --- a/components/table/index.jsx +++ b/components/table/index.jsx @@ -57,7 +57,7 @@ class Table extends React.Component { } }; - handleRowsSelect = (event) => { + handleRowsSelect = () => { this.setState({ selected: !this.state.selected }); };