Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Jul 18, 2024
1 parent f048f53 commit ecfa5ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/drawController.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ export class DrawController {
removeAnnotationWithCommand(id, exeCallback) {
const annotation = this.getAnnotation(id);
if (typeof annotation === 'undefined') {
logger.warn('Cannot create remove command for undefined annotation: ' + id);
logger.warn(
'Cannot create remove command for undefined annotation: ' + id);
return;
}
// create remove annotation command
Expand Down

0 comments on commit ecfa5ba

Please sign in to comment.