From df2a0eb337f83f9d4465e5160bff6735c64af06b Mon Sep 17 00:00:00 2001 From: Matt Sherman Date: Thu, 19 Oct 2023 11:20:20 -0400 Subject: [PATCH] Remove productType from ProductEditorContext interface --- packages/js/product-editor/src/types.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/js/product-editor/src/types.ts b/packages/js/product-editor/src/types.ts index 2c41ed9154c..680bd2d69f3 100644 --- a/packages/js/product-editor/src/types.ts +++ b/packages/js/product-editor/src/types.ts @@ -6,7 +6,6 @@ import { BlockEditProps } from '@wordpress/blocks'; export interface ProductEditorContext { postId: number; postType: string; - productType: string; selectedTab: string | null; }