remove stray console log

This commit is contained in:
2024-06-21 23:18:21 +02:00
parent 7ef761f99f
commit 1097cd8b03

View File

@ -11,7 +11,6 @@ export const Blocks = ({ blocks }: any) => {
);
return blocks.map((block: any) => {
console.log("block aaa", block);
switch (block.blockType) {
case "RichTextBlock":
return <RichTextBlock block={block} />;