diff --git a/libs/remix-ui/plugin-manager/src/lib/components/LocalPluginForm.tsx b/libs/remix-ui/plugin-manager/src/lib/components/LocalPluginForm.tsx index 8694e4e1e7..60580dc979 100644 --- a/libs/remix-ui/plugin-manager/src/lib/components/LocalPluginForm.tsx +++ b/libs/remix-ui/plugin-manager/src/lib/components/LocalPluginForm.tsx @@ -50,8 +50,6 @@ function LocalPluginForm ({ closeModal, visible, pluginManager }: LocalPluginFor } if (!location) throw new Error('Plugin should have a location') if (!url) throw new Error('Plugin should have an URL') - // eslint-disable-next-line no-debugger - debugger const newMethods = typeof methods === 'string' ? methods.split(',').filter(val => val) : [] const targetPlugin = { name: name, diff --git a/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx b/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx index 76d45734f9..cb2deb9bed 100644 --- a/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx +++ b/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx @@ -5,16 +5,6 @@ import PermisssionsSettings from './permissions/permissionsSettings' import { Profile } from '@remixproject/plugin-utils' import LocalPluginForm from './LocalPluginForm' -// const initialState: FormStateProps = { -// name: 'test', -// displayName: 'test', -// url: '', -// type: 'iframe', -// hash: '', -// methods: 'test', -// location: 'sidePanel' -// } - interface RootViewProps { pluginComponent: PluginManagerComponent children: ReactNode