Skip to content

Commit

Permalink
remove unnecessary log
Browse files Browse the repository at this point in the history
  • Loading branch information
LyonSyonII committed Nov 19, 2024
1 parent 96835e2 commit fdc0403
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions frontend/src/components/CodeBlock/CodeBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,6 @@ const navigationExtension = ({ transactionFilter }: typeof EditorState) =>
if (pos > leftModifiable && pos < rightModifiable) return { selection: { head: pos, anchor: pos } };

const nearestModifiable = getNearestModifiable(doc, pos, leftModifiable, rightModifiable);

console.log({leftModifiable, rightModifiable, pos, nearestModifiable});


return { selection: { head: nearestModifiable, anchor: nearestModifiable } };
});

Expand Down

0 comments on commit fdc0403

Please sign in to comment.