From 55e2a3a5cc63f4a0cd5d2490938aa0bfab7f359a Mon Sep 17 00:00:00 2001 From: Yonathan Evan Christy Date: Sat, 12 Aug 2023 02:43:18 +0700 Subject: [PATCH] Fix prettier error --- docs/assets/js/main.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 98b76f613e73..2b9c0cc6fe8c 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -111,7 +111,6 @@ function changeSVGViewBoxGoogle() { // Check if the viewport is smaller than tablet if (!mediaQuery.matches) { Array.from(svgsGoogle).forEach((svg) => { - // Set the viewBox attribute to '0 0 13 13' to make the svg fit in the mobile view svg.setAttribute('viewBox', '0 0 13 13'); svg.setAttribute('height', '13'); @@ -119,7 +118,6 @@ function changeSVGViewBoxGoogle() { }); } else { Array.from(svgsGoogle).forEach((svg) => { - // Set the viewBox attribute to '0 0 20 20' to make the svg fit in the tablet-desktop view svg.setAttribute('viewBox', '0 0 20 20'); svg.setAttribute('height', '16');