From adf455d095ec185b87becd71c9adc59b2d348ebc Mon Sep 17 00:00:00 2001 From: nmsturcke <30734036+nmsturcke@users.noreply.github.com> Date: Mon, 21 Nov 2022 19:41:59 +0100 Subject: Fix eslint --- src/components/PluginSettings/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/PluginSettings/index.tsx') diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index a605d31..64eb34e 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -246,7 +246,7 @@ export default ErrorBoundary.wrap(function Settings() { ); }; - let [newPlugins, error, newPluginsLoading] = useAwaiter(() => DataStore.get("Vencord_existingPlugins").then((existingPlugins: Record) => { + let [newPlugins] = useAwaiter(() => DataStore.get("Vencord_existingPlugins").then((existingPlugins: Record) => { const dateNow: number = Date.now() / 1000; const Vencord_existingPlugins: Record = {}; const newPlugins: Array = []; -- cgit