RED-7316: remove last console.log, hopefully

This commit is contained in:
Nicoleta Panaghiu 2024-01-15 11:27:23 +02:00
parent c0413f1fd9
commit 1979a9f55d

View File

@ -180,7 +180,6 @@ export class AnnotationDrawService {
#rectanglesToQuads(positions: IRectangle[], pageNumber: number): Quad[] {
const pageHeight = this._documentViewer.getHeight(pageNumber);
console.log(pageHeight);
return positions.map(p => this.#rectangleToQuad(p, pageHeight));
}