-
+
+ blocked_by
+
|
diff --git a/client/src/components/Dashboard/Statistics.js b/client/src/components/Dashboard/Statistics.js
index 744665ee..d0cc9646 100644
--- a/client/src/components/Dashboard/Statistics.js
+++ b/client/src/components/Dashboard/Statistics.js
@@ -15,7 +15,6 @@ class Statistics extends Component {
blockedFiltering,
replacedSafebrowsing,
replacedParental,
- t,
} = this.props;
const filteringData = [this.props.history[1]];
@@ -50,7 +49,9 @@ class Statistics extends Component {
{getPercent(dnsQueries, blockedFiltering)}
@@ -106,7 +107,6 @@ Statistics.propTypes = {
replacedSafebrowsing: PropTypes.number.isRequired,
replacedParental: PropTypes.number.isRequired,
refreshButton: PropTypes.node.isRequired,
- t: PropTypes.func.isRequired,
};
export default withNamespaces()(Statistics);
|