Ignore some types

This commit is contained in:
Luis Alvarez
2021-02-25 18:10:59 -05:00
parent e90d9a2121
commit fc023de844
12 changed files with 22 additions and 10 deletions

View File

@@ -28,7 +28,8 @@ export type ShopifyProps = {
export function CommerceProvider({ children, ...config }: ShopifyProps) {
return (
<CoreCommerceProvider
provider={shopifyProvider}
// TODO: Fix this type
provider={shopifyProvider as any}
config={{ ...shopifyConfig, ...config }}
>
{children}