aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/utils.js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-07-25 17:03:50 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-07-25 17:03:50 -0700
commit70dbd1b32d13d30e15c03ee91b0fab7bfdf429b3 (patch)
tree8c15d471934ac4b2c898725a2929f30f8dc7f9dd /web/src/js/utils.js
parent79ebcb046e8669f80357a6c3046ec76c6adf49be (diff)
downloadmitmproxy-70dbd1b32d13d30e15c03ee91b0fab7bfdf429b3.tar.gz
mitmproxy-70dbd1b32d13d30e15c03ee91b0fab7bfdf429b3.tar.bz2
mitmproxy-70dbd1b32d13d30e15c03ee91b0fab7bfdf429b3.zip
web: refactor ContentLoader
Diffstat (limited to 'web/src/js/utils.js')
-rw-r--r--web/src/js/utils.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/web/src/js/utils.js b/web/src/js/utils.js
index cc17c565..e44182d0 100644
--- a/web/src/js/utils.js
+++ b/web/src/js/utils.js
@@ -124,7 +124,6 @@ export const pure = renderFn => class extends React.Component {
static displayName = renderFn.name
shouldComponentUpdate(nextProps) {
- console.log(!shallowEqual(this.props, nextProps))
return !shallowEqual(this.props, nextProps)
}