mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
Moved the features to be environment variable only
This commit is contained in:
@@ -19,10 +19,9 @@ interface Props {
|
||||
className?: string
|
||||
children?: any
|
||||
product: Product
|
||||
wishlist?: boolean
|
||||
}
|
||||
|
||||
const ProductView: FC<Props> = ({ product, wishlist = false }) => {
|
||||
const ProductView: FC<Props> = ({ product }) => {
|
||||
const addItem = useAddItem()
|
||||
const { price } = usePrice({
|
||||
amount: product.price.value,
|
||||
|
Reference in New Issue
Block a user