diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index f8cb73c19..bc28cfe47 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -230,5 +230,5 @@ function makeDependencyList(deps: string[]) { } function dependencyCheck(pluginName: string, depMap: Record): string[] { - return depMap[pluginName] || []; + return depMap[pluginName]?.filter(d => Settings.plugins[d].enabled) || []; }