a tool for shared writing and social publishing

make backspace work on canvas textblocks

+6
+6
components/Blocks/TextBlock/keymap.ts
··· 278 278 279 279 return false; 280 280 } 281 + 282 + if (propsRef.current.pageType === "canvas") { 283 + repRef.current?.mutate.removeBlock({ 284 + blockEntity: propsRef.current.entityID, 285 + }); 286 + } 281 287 return true; 282 288 } 283 289