From e538f9b36334f99fd962ec2360edf530e3a17614 Mon Sep 17 00:00:00 2001 From: Rish Date: Wed, 10 Jun 2020 18:02:30 +0530 Subject: [PATCH] Removed error state action reset no issue - Don't reset the button/error state in case of a failure, similar behavior as Ghost Admin --- ghost/portal/src/components/ParentContainer.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ghost/portal/src/components/ParentContainer.js b/ghost/portal/src/components/ParentContainer.js index 8371fcabc2..c4efd7c3b4 100644 --- a/ghost/portal/src/components/ParentContainer.js +++ b/ghost/portal/src/components/ParentContainer.js @@ -212,11 +212,6 @@ export default class ParentContainer extends React.Component { this.setState({ action: `${action}:failed` }); - setTimeout(() => { - this.setState({ - action: '' - }); - }, 5000); } }