diff --git a/frontend/app/components/cart/CartListComponent.tsx b/frontend/app/components/cart/CartListComponent.tsx index d79b261..a62217f 100644 --- a/frontend/app/components/cart/CartListComponent.tsx +++ b/frontend/app/components/cart/CartListComponent.tsx @@ -1,13 +1,12 @@ import { Stack } from '@mantine/core'; import { useAtom } from 'jotai'; +import { LuShoppingCart } from 'react-icons/lu'; import { cartAtom } from '~/stores/cartAtom'; +import BreadCrumbsComponent from '../common/breadcrumbs/BreadCrumbsComponent'; import CartCards from './CartCards'; import CartSelectedDialog from './CartSelectedDialog'; import CartTitle from './CartTitle'; import NoCartComponent from './NoCartComponent'; -import BreadCrumbsComponent from '../common/breadcrumbs/BreadCrumbsComponent'; -import { FaUser } from 'react-icons/fa'; -import { LuShoppingCart } from 'react-icons/lu'; const CartListComponent = () => { const [cart] = useAtom(cartAtom); @@ -15,7 +14,6 @@ const CartListComponent = () => { , title: 'マイページ', href: '/home/me' }, { icon: , title: '貸出カート', href: '/home/cart' }, ]} />