a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

handle fall through case for block type

+1
+1
components/Blocks/Block.tsx
··· 124 124 ) => { 125 125 // BaseBlock renders the actual block content, delete states, controls spacing between block and list markers 126 126 let BlockTypeComponent = BlockTypeComponents[props.type]; 127 + if (!BlockTypeComponent) return <div>unknown block</div>; 127 128 return ( 128 129 <div className="blockContentWrapper grow flex gap-2 z-[1]"> 129 130 {props.listData && <ListMarker {...props} />}