diff --git a/packages/nextjs/app/cow/_components/PoolCreated.tsx b/packages/nextjs/app/cow/_components/PoolCreated.tsx index bb1f6b8..a22c921 100644 --- a/packages/nextjs/app/cow/_components/PoolCreated.tsx +++ b/packages/nextjs/app/cow/_components/PoolCreated.tsx @@ -66,7 +66,7 @@ export const PoolCreated = ({ etherscanURL, poolAddress, chainId, clearState }: It may take a few minutes to appear in the Balancer app -
+
clearState()} diff --git a/packages/nextjs/app/cow/_components/PoolCreation.tsx b/packages/nextjs/app/cow/_components/PoolCreation.tsx index a6a9cd1..9eda69d 100644 --- a/packages/nextjs/app/cow/_components/PoolCreation.tsx +++ b/packages/nextjs/app/cow/_components/PoolCreation.tsx @@ -126,7 +126,7 @@ export const PoolCreation = ({ poolCreation, updatePoolCreation, clearPoolCreati <>
-
+
Preview your pool
@@ -303,6 +303,10 @@ export const PoolCreation = ({ poolCreation, updatePoolCreation, clearPoolCreati
+ {poolCreation.step === 6 && ( + CoW AMMs built on Balancer v1 set the swap fee to the maximum value + )} + {txError && (
@@ -312,6 +316,16 @@ export const PoolCreation = ({ poolCreation, updatePoolCreation, clearPoolCreati )} + {isWrongNetwork && ( + + You're connected to the wrong network, switch to{" "} + switchChain?.({ chainId: poolCreation.chainId })} className="link"> + {CHAIN_NAMES[poolCreation.chainId]} + {" "} + to finish creating your poolCreation, or start over. + + )} + {poolCreation.step < 8 && (
@@ -323,6 +337,15 @@ export const PoolCreation = ({ poolCreation, updatePoolCreation, clearPoolCreati />
)} + + {poolCreation.step === 8 && ( + + )}
- - {poolCreation.step === 6 && All CoW AMMs should set the swap fee to the maximum value} - {poolCreation.step === 8 && ( - - )} - - {isWrongNetwork && ( - - You're connected to the wrong network, switch to{" "} - switchChain?.({ chainId: poolCreation.chainId })} className="link"> - {CHAIN_NAMES[poolCreation.chainId]} - {" "} - to finish creating your poolCreation, or start over. - - )} ); };