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 f2b41fd commit 781b924Copy full SHA for 781b924
libs/remix-ui/plugin-manager/src/lib/remix-ui-plugin-manager.tsx
@@ -162,9 +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'];
+ 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