Skip to content

Commit e412796

Browse files
committed
Update Cart.component.tsx
1 parent afb0a4e commit e412796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Header/Cart.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface ICartProps {
1717
const Cart: FC<ICartProps> = ({ stickyNav }) => {
1818
const { cart, setCart, isLoading } = useCartStore();
1919

20-
const { loading: queryLoading, error } = useQuery(GET_CART, {
20+
const { loading: queryLoading } = useQuery(GET_CART, {
2121
notifyOnNetworkStatusChange: true,
2222
onCompleted: (data) => {
2323
const updatedCart = getFormattedCart(data);

0 commit comments

Comments
 (0)