diff --git a/packages/frontend/src/components/projects/create/Configure.tsx b/packages/frontend/src/components/projects/create/Configure.tsx index ce88a144..1e7668a8 100644 --- a/packages/frontend/src/components/projects/create/Configure.tsx +++ b/packages/frontend/src/components/projects/create/Configure.tsx @@ -432,6 +432,12 @@ const Configure = () => { fetchDeployers(); }, []); + useEffect(() => { + if(isBalanceSufficient) { + setBalanceMessage(undefined); + } + }, [isBalanceSufficient]); + return (
@@ -626,15 +632,13 @@ const Configure = () => {

{balanceMessage !== undefined ? ( @@ -661,7 +665,7 @@ const Configure = () => { setIsDataReceived={setIsAccountsDataReceived} isVisible={isFrameVisible} /> - +

);