Skip to content

Commit

Permalink
Removed testing logs
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-danylchenko committed Sep 3, 2024
1 parent 6b617a2 commit 308a7c9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/text-annotator/src/highlight/span/spansRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ const createRenderer = (container: HTMLElement): RendererImplementation => {
const highlightsByCreation = [...highlights].sort((highlightA, highlightB) => {
const { annotation: { target: { created: createdA } } } = highlightA;
const { annotation: { target: { created: createdB } } } = highlightB;
console.log(highlightA.annotation);
console.log(highlightB.annotation);
return createdA && createdB ? createdA.getTime() - createdB.getTime() : 0;
});

Expand Down

0 comments on commit 308a7c9

Please sign in to comment.