Skip to content

Commit

Permalink
Remove LineItem since it is not implemented (fix presubmit failures).
Browse files Browse the repository at this point in the history
  • Loading branch information
ikuleshov committed Aug 29, 2024
1 parent a03a11f commit 81c0991
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/pages/ga4/enhanced-ecommerce/cart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import * as React from "react"
import Layout from "@/components/Layout"
import {Header} from "@/components/ga4/EnhancedEcommerce/header";
import {Footer} from "@/components/ga4/EnhancedEcommerce/footer";
import {LineItem} from "@/components/ga4/EnhancedEcommerce/line-item";

import {StoreContext} from '@/components/ga4/EnhancedEcommerce/store-context';
import {collapseColumn, emptyStateContainer, emptyStateHeading, grandTotal, imageHeader, labelColumn, productHeader, summary, table, title, totals, wrap,} from "./cart.module.css"
Expand Down Expand Up @@ -80,9 +79,6 @@ export default (props: Props) => {
</tr>
</thead>
<tbody>
{lineItems.map((item) => (
<LineItem item={item} key={item.id} editable={false}/>
))}

<tr className={summary}>
<td className={collapseColumn}></td>
Expand Down

0 comments on commit 81c0991

Please sign in to comment.