Skip to content

Commit db7217d

Browse files
committed
muved plugin manager to the bottom
1 parent 89e66d6 commit db7217d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

apps/remix-ide/src/app/components/side-panel.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import ReactDOM from 'react-dom'
44
import { AbstractPanel } from './panel'
55
import { RemixPluginPanel } from '@remix-ui/panel'
66
import packageJson from '../../../../../package.json'
7-
import { RemixAppManager } from '../../remixAppManager'
87
import RemixUIPanelHeader from 'libs/remix-ui/panel/src/lib/plugins/panel-header'
98
// const csjs = require('csjs-inject')
109

libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const RemixUiVerticalIconsPanel = ({
7070
? 'remixui_default-icons-container remixui_requiredSection' : activateScroll && activateScroll.scrollState ? 'remixui_default-icons-container remixui_requiredSection' : 'remixui_requiredSection'}>
7171
<IconList
7272
theme={theme}
73-
icons={icons.filter((p) => p.isRequired)}
73+
icons={icons.filter((p) => p.isRequired && p.profile.name !== 'pluginManager')}
7474
verticalIconsPlugin={verticalIconsPlugin}
7575
itemContextAction={itemContextAction}
7676
/>
@@ -107,7 +107,7 @@ const RemixUiVerticalIconsPanel = ({
107107
/>) : null }
108108
<IconList
109109
theme={theme}
110-
icons={icons.filter((p) => p.profile.name === 'settings')}
110+
icons={icons.filter((p) => p.profile.name === 'settings' || p.profile.name === 'pluginManager')}
111111
verticalIconsPlugin={verticalIconsPlugin}
112112
itemContextAction={itemContextAction}
113113
/>

0 commit comments

Comments
 (0)