From ebac79b2aa24d33615f911cec6189c915c8faa13 Mon Sep 17 00:00:00 2001 From: A'Kaia Phelps Date: Thu, 28 Nov 2024 20:41:26 -0800 Subject: [PATCH] correcting trailing spaces and missing semicolon according to npm lint --- web-client/public/js/setup-handlers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-client/public/js/setup-handlers.js b/web-client/public/js/setup-handlers.js index 00937f33..9c81d86b 100644 --- a/web-client/public/js/setup-handlers.js +++ b/web-client/public/js/setup-handlers.js @@ -114,7 +114,7 @@ export const setupHandlers = grnState => { const explicitlySetStyle = element => { const cssStyleDeclarationComputed = window.getComputedStyle(element); - const computedStyleObj = {}; + const computedStyleObj = {}; for (let i = 0; i < cssStyleDeclarationComputed.length; i++) { @@ -134,7 +134,7 @@ export const setupHandlers = grnState => { } if (computedStyleObj) { - Object.assign(element.style, computedStyleObj) + Object.assign(element.style, computedStyleObj); } };