diff options
author | nmsturcke <30734036+nmsturcke@users.noreply.github.com> | 2022-11-21 19:41:59 +0100 |
---|---|---|
committer | nmsturcke <30734036+nmsturcke@users.noreply.github.com> | 2022-11-21 19:41:59 +0100 |
commit | adf455d095ec185b87becd71c9adc59b2d348ebc (patch) | |
tree | 9fee2f7735ba97184d7d062042525b853e51d042 /src/components/PluginSettings | |
parent | 3ee41852243484223cfdc12022c4343ce8f367df (diff) | |
download | Vencord-adf455d095ec185b87becd71c9adc59b2d348ebc.tar.gz Vencord-adf455d095ec185b87becd71c9adc59b2d348ebc.tar.bz2 Vencord-adf455d095ec185b87becd71c9adc59b2d348ebc.zip |
Fix eslint
Diffstat (limited to 'src/components/PluginSettings')
-rw-r--r-- | src/components/PluginSettings/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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<string, number>) => { + let [newPlugins] = useAwaiter(() => DataStore.get("Vencord_existingPlugins").then((existingPlugins: Record<string, number>) => { const dateNow: number = Date.now() / 1000; const Vencord_existingPlugins: Record<string, number> = {}; const newPlugins: Array<string> = []; |