From 3a5e37aa84cf16df1db1d2b0be917a6745ed0584 Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 26 May 2016 16:22:40 +0100 Subject: [PATCH] This actually shouldn't be necessary. --- src/Velociraptor.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Velociraptor.js b/src/Velociraptor.js index bad921c8c4..9132f7b7b9 100644 --- a/src/Velociraptor.js +++ b/src/Velociraptor.js @@ -25,10 +25,6 @@ module.exports = React.createClass({ this._updateChildren(this.props.children); }, - componentWillUnmount: function() { - this._updateChildren([]); - }, - componentWillReceiveProps: function(nextProps) { this._updateChildren(nextProps.children); },