Update registerWooBlockType for tab

This commit is contained in:
Matt Sherman 2023-09-27 17:18:00 -04:00
parent 898dd99be6
commit 78fab5c8e3
1 changed files with 5 additions and 1 deletions

View File

@ -19,5 +19,9 @@ export const settings = {
};
export function init() {
registerWooBlockType( { name, metadata: metadata as never, settings } );
registerWooBlockType( {
name,
metadata: metadata as never,
settings: settings as never,
} );
}