From a011063fda58717c25c0c8a7ddd437dbff35340f Mon Sep 17 00:00:00 2001 From: Teltta <92880720+Teltta@users.noreply.github.com> Date: Thu, 12 Oct 2023 11:50:47 +0300 Subject: [PATCH] god i love the linter --- src/Icon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Icon.tsx b/src/Icon.tsx index d3c7e19..1a83b55 100644 --- a/src/Icon.tsx +++ b/src/Icon.tsx @@ -3,7 +3,7 @@ import { components } from "replugged"; import { cfg, toggleDisabledIndicator } from "."; export const Icon = ({ type }: { type?: { analyticsName?: string } }): React.JSX.Element | null => { - if (["sidebar","normal"].every((val) => val !== type?.analyticsName)) return null; + if (["sidebar", "normal"].every((val) => val !== type?.analyticsName)) return null; const silent = cfg.get("silent"); const buttonEnabled = cfg.get("buttonEnabled");