diff --git a/pages/wishlist.tsx b/pages/wishlist.tsx index 40f18692f..ee81857de 100644 --- a/pages/wishlist.tsx +++ b/pages/wishlist.tsx @@ -4,7 +4,7 @@ import getAllPages from '@bigcommerce/storefront-data-hooks/api/operations/get-a import useWishlist from '@bigcommerce/storefront-data-hooks/wishlist/use-wishlist' import { Layout } from '@components/common' import { Heart } from '@components/icons' -import { Text } from '@components/ui' +import { Text, Container } from '@components/ui' import { WishlistCard } from '@components/wishlist' import { defatultPageProps } from '@lib/defaults' @@ -23,27 +23,31 @@ export default function Wishlist() { const { data, isEmpty } = useWishlist({ includeProducts: true }) return ( -
- My Wishlist -
- {isEmpty ? ( -
- - - -

- Your wishlist is empty -

-

- Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake. -

-
- ) : ( - data && - data.items?.map((item) => ) - )} + +
+ My Wishlist +
+ {isEmpty ? ( +
+ + + +

+ Your wishlist is empty +

+

+ Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake. +

+
+ ) : ( + data && + data.items?.map((item) => ( + + )) + )} +
-
+ ) }