Skip to content

Commit

Permalink
Add rec to checkout docs and fix boosted token info tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPereira committed Dec 6, 2024
1 parent 15ec62d commit 0c1b10e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/app/v3/_components/PoolDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function TokenDetails({ token }: { token: TokenConfig }) {
</div>
{token.tokenInfo && (
<div>
<TokenToolTip token={token.tokenInfo} />
<TokenToolTip token={token.useBoostedVariant && boostedToken ? boostedToken : token.tokenInfo} />
</div>
)}
</div>
Expand Down
19 changes: 16 additions & 3 deletions packages/nextjs/app/v3/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@ const BalancerV3: NextPage = () => {
<div>
<Alert type="warning">
<div className="flex items-center gap-2">
Please switch back to {chain.name} to continue with pool creation. You must start over if you wish
to switch networks
You have already begun the pool configuration process. Please switch back to {chain.name} to
continue or if you prefer to switch networks,
<div className="link" onClick={() => setIsResetModalOpen(true)}>
start over
</div>
</div>
</Alert>
</div>
Expand All @@ -65,7 +68,7 @@ const BalancerV3: NextPage = () => {
<>
{!chain && (
<div className="flex justify-center">
<div className="w-[1128px]">
<div className="w-[1130px]">
<Alert type="warning">
<div className="flex items-center gap-2">
Make sure you switch to your desired network before beginning pool creation. You cannot switch
Expand All @@ -76,6 +79,16 @@ const BalancerV3: NextPage = () => {
</div>
</div>
)}
<div className="flex justify-center">
<div className="w-[1130px]">
<Alert type="info">
<div className="flex items-center gap-2">
Before starting the pool configuration process, we recommend that you review our pool creation
documentation
</div>
</Alert>
</div>
</div>

<div className="hidden sm:flex flex-wrap gap-5 w-full justify-center">
<PoolConfiguration />
Expand Down

0 comments on commit 0c1b10e

Please sign in to comment.