From ebec4bc0cd521f3a4b1abedcfd22b9115b21ef28 Mon Sep 17 00:00:00 2001 From: Mike Jolley Date: Thu, 20 Apr 2023 12:34:36 +0100 Subject: [PATCH] isNumber --- assets/js/blocks/featured-items/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/blocks/featured-items/types.ts b/assets/js/blocks/featured-items/types.ts index 2c8e53f5275..37b44c63c3f 100644 --- a/assets/js/blocks/featured-items/types.ts +++ b/assets/js/blocks/featured-items/types.ts @@ -2,7 +2,7 @@ * External dependencies */ import type { Block, BlockEditProps } from '@wordpress/blocks'; -import { isNumber } from 'lodash'; +import { isNumber } from '@woocommerce/types'; export type EditorBlock< T > = Block< T > & BlockEditProps< T >;