From 6b88c15d1a6193cd090c5a1ae9b6ea06a467e171 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 4 Jul 2021 13:29:42 +0900 Subject: yarn lint:fix --- src/console/hooks/useAutoResize.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/console/hooks/useAutoResize.ts') diff --git a/src/console/hooks/useAutoResize.ts b/src/console/hooks/useAutoResize.ts index 4253606..26f1d76 100644 --- a/src/console/hooks/useAutoResize.ts +++ b/src/console/hooks/useAutoResize.ts @@ -10,10 +10,8 @@ const useAutoResize = () => { }, []); React.useLayoutEffect(() => { - const { - scrollWidth: width, - scrollHeight: height, - } = document.getElementById("vimvixen-console")!; + const { scrollWidth: width, scrollHeight: height } = + document.getElementById("vimvixen-console")!; consoleFrameClient.resize(width, height); if (width === prevWidth && height === prevHeight) { -- cgit v1.2.3