From 67e3d7209538721a85c648803f799c539fc735e4 Mon Sep 17 00:00:00 2001 From: Matt Sherman Date: Mon, 16 Oct 2023 23:31:44 -0400 Subject: [PATCH] Add productType to ProductEditorContext interface --- packages/js/product-editor/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/js/product-editor/src/types.ts b/packages/js/product-editor/src/types.ts index 96e0434dda2..d674f347adc 100644 --- a/packages/js/product-editor/src/types.ts +++ b/packages/js/product-editor/src/types.ts @@ -5,9 +5,9 @@ import { BlockEditProps } from '@wordpress/blocks'; import { Product } from '@woocommerce/data'; export interface ProductEditorContext { - editedProduct: Product; postId: number; postType: string; + productType: string; selectedTab: string | null; }