Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add new prop for showing eap note [MONET-1253] #102

Merged
merged 1 commit into from
Jun 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions apps/shopify/src/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import { setup, renderSkuPicker } from '@contentful/ecommerce-app-base';
import {
fetchProductVariantPreviews,
fetchProductPreviews,
fetchCollectionPreviews,
makeSkuResolver,
} from './skuResolvers';
import { fetchProductVariantPreviews, fetchProductPreviews, fetchCollectionPreviews, makeSkuResolver } from './skuResolvers';
import { SKU_TYPES } from './constants';

import logo from './logo.svg';
Expand Down Expand Up @@ -130,8 +125,7 @@ setup({
makeCTA,
name: 'Shopify',
logo,
description:
'The Shopify app allows editors to select products from their Shopify account and reference them inside of Contentful entries.',
description: 'The Shopify app allows editors to select products from their Shopify account and reference them inside of Contentful entries.',
color: '#212F3F',
parameterDefinitions: [
{
Expand All @@ -150,6 +144,7 @@ setup({
},
],
skuTypes: SKU_TYPES,
isInOrchestrationEAP: true,
fetchProductPreviews: fetchPreviews,
renderDialog,
openDialog,
Expand Down