Skip to content

Commit 6bc398b

Browse files
committed
chore: fix lint
1 parent ca665ea commit 6bc398b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/comments/comment_view.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class CommentView implements IRenderedElement {
116116
textPreviewNode: this.textPreviewNode,
117117
} = this.createTopBar(this.svgRoot, workspace));
118118

119-
this.commentEditor = this.createTextArea(this.svgRoot);
119+
this.commentEditor = this.createTextArea();
120120

121121
this.resizeHandle = this.createResizeHandle(this.svgRoot, workspace);
122122

@@ -229,7 +229,7 @@ export class CommentView implements IRenderedElement {
229229
/**
230230
* Creates the text area where users can type. Registers event listeners.
231231
*/
232-
private createTextArea(svgRoot: SVGGElement) {
232+
private createTextArea() {
233233
const commentEditor = new CommentEditor(this.workspace, this.commentId);
234234

235235
this.svgRoot.appendChild(commentEditor.getDom());

0 commit comments

Comments
 (0)