Skip to content

Commit

Permalink
Fix invalid type
Browse files Browse the repository at this point in the history
  • Loading branch information
talldan committed Feb 5, 2024
1 parent b2afd85 commit 83ab7e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-library/src/block/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function applyInitialContentValuesToInnerBlocks(
}

function getContentValuesFromInnerBlocks( blocks, defaultValues ) {
/** @type {Record<string, { values: Record<string, unknown>> }} */
/** @type {Record<string, { values: Record<string, unknown>}>} */
const content = {};
for ( const block of blocks ) {
Object.assign(
Expand Down

0 comments on commit 83ab7e9

Please sign in to comment.