Skip to content

Commit

Permalink
fix: remove pending
Browse files Browse the repository at this point in the history
  • Loading branch information
apledger committed Jan 16, 2025
1 parent 11ea0de commit a672f6e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions apps/web/vibes/soul/sections/cart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@ export function Cart<LineItem extends CartLineItem>({

interface CartSkeletonProps {
className?: string;
pending?: boolean;
placeholderCount?: number;
summaryPlaceholderCount?: number;
title?: string;
summaryTitle?: string;
}

export function CartSkeleton({
pending = false,
title = 'Cart',
summaryTitle = 'Summary',
placeholderCount = 2,
Expand All @@ -45,7 +43,7 @@ export function CartSkeleton({
return (
<StickySidebarLayout
sidebar={
<div data-pending={pending ? '' : undefined}>
<div>
<h2 className="mb-10 font-heading text-4xl font-medium leading-none @xl:text-5xl">
{summaryTitle}
</h2>
Expand Down Expand Up @@ -77,7 +75,7 @@ export function CartSkeleton({
sidebarPosition="after"
sidebarSize="1/3"
>
<div data-pending={pending ? '' : undefined}>
<div>
<h1 className="mb-10 font-heading text-4xl font-medium leading-none @xl:text-5xl">
{title}
</h1>
Expand Down

0 comments on commit a672f6e

Please sign in to comment.