Skip to content

Commit

Permalink
request changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GrandSchtroumpf committed Jan 15, 2025
1 parent 28f922c commit 95f4967
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/components/cart/EmptyCart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export const EmptyCart = () => {
0
</span>
</div>
<h2 className="max-w-[440px] text-[32px] leading-[36px]">
No Strategies Found
</h2>
<p className="text-16 max-w-[440px] text-white/60">Your cart is empty</p>
<Link
to="/trade/disposable"
Expand Down
5 changes: 1 addition & 4 deletions src/pages/cart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,6 @@ export const CartPage = () => {
if (!strategies.length) {
return (
<section className="px-content pb-30 xl:px-50 mx-auto grid max-w-[1280px] flex-grow content-start gap-16 pt-20">
<h1 className="text-18 flex items-center gap-8">
Create Multiple Strategies
</h1>
<EmptyCart />
</section>
);
Expand Down Expand Up @@ -175,7 +172,7 @@ export const CartPage = () => {
confirmation ? 'Waiting for Confirmation' : 'Processing'
}
variant="success"
className="mt-20 place-self-center"
className="mt-10 place-self-center"
>
Sign all strategies
</Button>
Expand Down

0 comments on commit 95f4967

Please sign in to comment.