File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/next/src/next-devtools/dev-overlay
components/devtools-panel/devtools-panel-tab Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import type { DevToolsPanelTabType } from '../devtools-panel'
2
2
import type { OverlayDispatch , OverlayState } from '../../../shared'
3
3
4
- import { Settings } from './settings'
4
+ import { SettingsTab } from './settings-tab '
5
5
6
6
export function DevToolsPanelTab ( {
7
7
activeTab,
@@ -13,7 +13,7 @@ export function DevToolsPanelTab({
13
13
dispatch : OverlayDispatch
14
14
} ) {
15
15
if ( activeTab === 'settings' ) {
16
- return < Settings state = { state } dispatch = { dispatch } />
16
+ return < SettingsTab state = { state } dispatch = { dispatch } />
17
17
}
18
18
19
19
if ( activeTab === 'route' ) {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ function ThemeIcon({ theme }: { theme: 'dark' | 'light' | 'system' }) {
34
34
}
35
35
}
36
36
37
- export function Settings ( {
37
+ export function SettingsTab ( {
38
38
state,
39
39
dispatch,
40
40
} : {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import { RESTART_SERVER_BUTTON_STYLES } from '../components/errors/error-overlay
27
27
import { DEVTOOLS_PANEL_STYLES } from '../components/devtools-panel/devtools-panel'
28
28
import { DEVTOOLS_PANEL_FOOTER_STYLES } from '../components/devtools-panel/devtools-panel-footer'
29
29
import { DEVTOOLS_PANEL_VERSION_INFO_STYLES } from '../components/devtools-panel/devtools-panel-version-info'
30
- import { DEVTOOLS_PANEL_TAB_SETTINGS_STYLES } from '../components/devtools-panel/devtools-panel-tab/settings'
30
+ import { DEVTOOLS_PANEL_TAB_SETTINGS_STYLES } from '../components/devtools-panel/devtools-panel-tab/settings-tab '
31
31
32
32
export function ComponentStyles ( ) {
33
33
return (
You can’t perform that action at this time.
0 commit comments