diff --git a/package.json b/package.json index 7dbe5f3..e2e425e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ghost-dao-interface", "private": true, - "version": "0.7.43", + "version": "0.7.44", "type": "module", "scripts": { "dev": "vite", diff --git a/src/containers/Dex/SwapContainer.jsx b/src/containers/Dex/SwapContainer.jsx index ed67845..9f89b8b 100644 --- a/src/containers/Dex/SwapContainer.jsx +++ b/src/containers/Dex/SwapContainer.jsx @@ -149,7 +149,10 @@ const SwapContainer = ({ else if (pairAddress === EMPTY_ADDRESS) text = "Create Pool"; if (isPending) text = `${text}ping...` - if (pairAddress === EMPTY_ADDRESS && isPending) text = "Creating Pool..." + if ( + !(isWrapping || isUnwrapping) && + (pairAddress === EMPTY_ADDRESS && isPending) + ) text = "Creating Pool..." return text; }, [isPending, isWrapping, isUnwrapping, pairAddress]);