a tool for shared writing and social publishing
0
fork

Configure Feed

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

fix keyboard selection bug

+1
+1
components/SelectionManager.tsx
··· 19 19 let { rep } = useReplicache(); 20 20 useEffect(() => { 21 21 let listener = async (e: KeyboardEvent) => { 22 + if (e.defaultPrevented) return; 22 23 if (e.key === "Backspace" || e.key === "Delete") { 23 24 if (moreThanOneSelected) { 24 25 let selectedBlocks = useUIState.getState().selectedBlock;