Skip to content

Commit

Permalink
Removed debug log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rsimon committed Mar 29, 2024
1 parent c1a91be commit 263a67e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/text-annotator/src/highlight/span/spansRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ const createRenderer = (container: HTMLElement): RendererImplementation => {
currentStyle?: HighlightStyleExpression,
painter?: HighlightPainter,
lazy?: boolean
) => {
console.log('redraw, lazy =', lazy);

) => {
// Only redraw if annotations or annotation states changed
const noChanges = dequal(currentRendered, highlights);
if (noChanges && lazy) return;
Expand Down

0 comments on commit 263a67e

Please sign in to comment.