Skip to content

Commit 65c8e08

Browse files
ci: apply automated fixes
1 parent b20787d commit 65c8e08

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

packages/devtools/src/components/tab-content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createEffect, createSignal } from 'solid-js'
22
import { useDevtoolsState } from '../context/use-devtools-context'
33
import { tabs } from '../tabs'
4-
import type { JSX } from 'solid-js';
4+
import type { JSX } from 'solid-js'
55

66
export const TabContent = () => {
77
const { state } = useDevtoolsState()
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
export const PluginsTab = () => {
2-
return (
3-
<div>
4-
Plugins
5-
</div>
6-
)
7-
}
2+
return <div>Plugins</div>
3+
}
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
export const SettingsTab = () => {
2-
return (
3-
<div>
4-
Settings
5-
</div>
6-
)
7-
}
2+
return <div>Settings</div>
3+
}

0 commit comments

Comments
 (0)