Skip to content

Commit 85d8430

Browse files
committed
Make prettier happy
1 parent a39c43a commit 85d8430

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ts/adaptors/HTMLAdaptor.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ export class HTMLAdaptor<
199199
extends AbstractDOMAdaptor<N, T, D>
200200
implements MinHTMLAdaptor<N, T, D>
201201
{
202-
203202
/**
204203
* The font size to use when it can't be measured (e.g., the element
205204
* isn't in the DOM).
@@ -597,7 +596,7 @@ export class HTMLAdaptor<
597596
const style = this.window.getComputedStyle(node);
598597
return parseFloat(
599598
style.fontSize ||
600-
String((this.constructor as typeof HTMLAdaptor).DEFAULT_FONT_SIZE)
599+
String((this.constructor as typeof HTMLAdaptor).DEFAULT_FONT_SIZE)
601600
);
602601
}
603602

0 commit comments

Comments
 (0)