We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18a4727 commit f2b41fdCopy full SHA for f2b41fd
libs/remix-ui/plugin-manager/src/lib/remix-ui-plugin-manager.tsx
@@ -162,6 +162,9 @@ export const RemixUiPluginManager = ({ pluginComponent }: RemixUiPluginManagerPr
162
const getFilteredPlugins = () => {
163
let plugins = [...pluginComponent.activePlugins, ...pluginComponent.inactivePlugins]
164
165
+ const HIDDEN_PLUGINS = ['ai-dapp-generator'];
166
+ plugins = plugins.filter(profile => !HIDDEN_PLUGINS.includes(profile.name))
167
+
168
if (filterByRemix) {
169
plugins = plugins.filter(profile => profile.maintainedBy?.toLowerCase() === 'remix')
170
}
0 commit comments