Skip to content

Commit 1f30c76

Browse files
ci: apply automated fixes
1 parent b326ebc commit 1f30c76

File tree

1 file changed

+2
-5
lines changed
  • packages/devtools-ui/src/components

1 file changed

+2
-5
lines changed

packages/devtools-ui/src/components/tag.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Show, } from 'solid-js'
1+
import { Show } from 'solid-js'
22
import { useStyles } from '../styles/use-styles'
33
import type { tokens } from '../styles/tokens'
44

@@ -10,10 +10,7 @@ export const Tag = (props: {
1010
}) => {
1111
const styles = useStyles()
1212
return (
13-
<button
14-
disabled={props.disabled}
15-
class={styles().tag.base}
16-
>
13+
<button disabled={props.disabled} class={styles().tag.base}>
1714
<span class={styles().tag.dot(props.color)} />
1815
<span class={styles().tag.label}>{props.label}</span>
1916

0 commit comments

Comments
 (0)