chore: format

This commit is contained in:
Rachel Fenichel
2024-03-08 15:08:15 -08:00
parent ccd29be4c4
commit 3fccb75885

View File

@@ -282,7 +282,9 @@ export function defineBlocks(blocks: {[key: string]: BlockDefinition}) {
for (const type of Object.keys(blocks)) {
const definition = blocks[type];
if (type in Blocks) {
console.warn(`Block definition "${type}" overwrites previous definition.`);
console.warn(
`Block definition "${type}" overwrites previous definition.`,
);
}
Blocks[type] = definition;
}