From fb384544df01c00b1b40704d624c7262f3073806 Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Thu, 29 Aug 2019 13:17:51 +0300 Subject: [PATCH] Fix willUnmount bug from ProfileSettingsForm --- src/forms/ProfileSettingsForm/ProfileSettingsForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/forms/ProfileSettingsForm/ProfileSettingsForm.js b/src/forms/ProfileSettingsForm/ProfileSettingsForm.js index 69d690dd..211d7a37 100644 --- a/src/forms/ProfileSettingsForm/ProfileSettingsForm.js +++ b/src/forms/ProfileSettingsForm/ProfileSettingsForm.js @@ -37,7 +37,7 @@ class ProfileSettingsFormComponent extends Component { } componentWillUnmount() { - window.clearTimeout(this.blurTimeoutId); + window.clearTimeout(this.uploadDelayTimeoutId); } render() {