Skip to content

Commit

Permalink
🐛 missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
DuvCharles committed Nov 21, 2023
1 parent 027b8e5 commit e194d3e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/cart/delete-item-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { useRouter } from 'next/navigation';

import clsx from 'clsx';
import type { CartItem } from 'lib/sylius/types';
import { useTransition } from 'react';
import { removeItem } from './actions';

export default function DeleteItemButton({ item }: { item: CartItem }) {
const router = useRouter();
Expand Down

0 comments on commit e194d3e

Please sign in to comment.