diff options
Diffstat (limited to 'src/components/PluginSettings/index.tsx')
-rw-r--r-- | src/components/PluginSettings/index.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index 39fb911..f16d55c 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -243,9 +243,9 @@ export default ErrorBoundary.wrap(function Settings() { }; return ( - <Forms.FormSection tag="h1" title="Vencord"> + <Forms.FormSection> <Forms.FormTitle tag="h5" className={classes(Margins.marginTop20, Margins.marginBottom8)}> - Plugins + Filters </Forms.FormTitle> <ReloadRequiredCard plugins={[...changes.getChanges()]} style={{ marginBottom: 16 }} /> @@ -268,6 +268,8 @@ export default ErrorBoundary.wrap(function Settings() { </div> </div> + <Forms.FormTitle className={Margins.marginTop20}>Plugins</Forms.FormTitle> + <div style={styles.PluginsGrid}> {sortedPlugins?.length ? sortedPlugins .filter(a => !a.required && !dependencyCheck(a.name, depMap).length && pluginFilter(a)) |