1 parent 41ecaed commit cb3760bCopy full SHA for cb3760b
1 file changed
client/src/pages/Cart.tsx
@@ -1,4 +1,3 @@
1
-import { useState } from "react";
2
import Header from "@/components/ui/header";
3
import Footer from "@/components/ui/footer";
4
import CartItem, { CartItemProps } from "@/components/ui/cart-item";
@@ -28,8 +27,6 @@ const initialCart: CartItemProps[] = [
28
27
];
29
30
export default function Cart() {
31
- const [showMessage, setShowMessage] = useState(true);
32
-
33
return (
34
<>
35
<Header />
0 commit comments