From f2a42565e29c04d953928969ca7ba9b2cbb0fa56 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 20 Feb 2024 13:48:47 -0500 Subject: [PATCH] prettier --- src/components/popup/popup.component.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/popup/popup.component.ts b/src/components/popup/popup.component.ts index d724fa1c..f5955807 100644 --- a/src/components/popup/popup.component.ts +++ b/src/components/popup/popup.component.ts @@ -14,7 +14,12 @@ export interface VirtualElement { } function isVirtualElement(e: unknown): e is VirtualElement { - return e !== null && typeof e === 'object' && 'getBoundingClientRect' in e && ('contextElement' in e ? e instanceof Element : true); + return ( + e !== null && + typeof e === 'object' && + 'getBoundingClientRect' in e && + ('contextElement' in e ? e instanceof Element : true) + ); } /**