Use registerProductEditorBlockType for attributes

This commit is contained in:
Matt Sherman 2023-10-12 11:23:52 -04:00
parent 2296f910c9
commit 8fee2c1669
1 changed files with 2 additions and 6 deletions

View File

@ -1,13 +1,9 @@
/**
* External dependencies
*/
import { registerWooBlockType } from '@woocommerce/block-templates';
/**
* Internal dependencies
*/
import metadata from './block.json';
import { Edit } from './edit';
import { registerProductEditorBlockType } from '../../../utils';
const { name } = metadata;
@ -19,7 +15,7 @@ export const settings = {
};
export const init = () =>
registerWooBlockType( {
registerProductEditorBlockType( {
name,
metadata: metadata as never,
settings: settings as never,