Use registerProductEditorBlockType for summary
This commit is contained in:
parent
ca9b5c3dd9
commit
271258a0c4
|
@ -1,13 +1,9 @@
|
||||||
/**
|
|
||||||
* External dependencies
|
|
||||||
*/
|
|
||||||
import { registerWooBlockType } from '@woocommerce/block-templates';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal dependencies
|
* Internal dependencies
|
||||||
*/
|
*/
|
||||||
import blockConfiguration from './block.json';
|
import blockConfiguration from './block.json';
|
||||||
import { Edit } from './edit';
|
import { Edit } from './edit';
|
||||||
|
import { registerProductEditorBlockType } from '../../../utils';
|
||||||
|
|
||||||
const { name, ...metadata } = blockConfiguration;
|
const { name, ...metadata } = blockConfiguration;
|
||||||
|
|
||||||
|
@ -19,7 +15,7 @@ export const settings = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export function init() {
|
export function init() {
|
||||||
return registerWooBlockType( {
|
return registerProductEditorBlockType( {
|
||||||
name,
|
name,
|
||||||
metadata: metadata as never,
|
metadata: metadata as never,
|
||||||
settings: settings as never,
|
settings: settings as never,
|
||||||
|
|
Loading…
Reference in New Issue