From d6d70b05d01e7046e0031ae00218467969035e8b Mon Sep 17 00:00:00 2001 From: Aston Motes Date: Tue, 15 Nov 2016 15:53:31 -0800 Subject: [PATCH] Remove spurious resetValue() for FormsyText --- src/FormsyText.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/FormsyText.jsx b/src/FormsyText.jsx index 29fd374..aa85534 100644 --- a/src/FormsyText.jsx +++ b/src/FormsyText.jsx @@ -77,8 +77,6 @@ const FormsyText = React.createClass({ if (this.isValidValue(event.target.value)) { this.setValue(event.currentTarget.value); // If it becomes invalid, and there isn't an error message, invalidate without error. - } else { - this.resetValue(); } } }