Skip to content

Commit b795067

Browse files
ci: apply automated fixes
1 parent 92b5c9a commit b795067

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

packages/devtools-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@
6565
"devDependencies": {
6666
"vite-plugin-solid": "^2.11.6"
6767
}
68-
}
68+
}

packages/devtools-ui/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export { TanStackLogo } from './components/logo'
55
export { JsonTree, registerJsonTreeComponent } from './components/tree'
66
export { Button } from './components/button'
77
export { Tag } from './components/tag'
8-
export type { CustomElements } from './types'
8+
export type { CustomElements } from './types'

packages/react-devtools/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import type { CustomElements } from '@tanstack/devtools-ui'
66
declare module 'react' {
77
// eslint-disable-next-line @typescript-eslint/no-namespace
88
namespace JSX {
9-
interface IntrinsicElements extends CustomElements { }
9+
interface IntrinsicElements extends CustomElements {}
1010
}
1111
}
1212
export const TanStackDevtools: (typeof Devtools)['TanStackDevtools'] =
1313
process.env.NODE_ENV !== 'development'
1414
? function () {
15-
return null
16-
}
15+
return null
16+
}
1717
: Devtools.TanStackDevtools
1818

1919
export type {

packages/solid-devtools/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import type { CustomElements } from '@tanstack/devtools-ui'
55
declare module 'solid-js' {
66
// eslint-disable-next-line @typescript-eslint/no-namespace
77
namespace JSX {
8-
interface IntrinsicElements extends CustomElements { }
8+
interface IntrinsicElements extends CustomElements {}
99
}
1010
}
1111

1212
export const TanStackDevtools: (typeof Devtools)['TanStackDevtools'] = isDev
1313
? Devtools.TanStackDevtools
1414
: function () {
15-
return null
16-
}
15+
return null
16+
}
1717

1818
export type { TanStackDevtoolsSolidPlugin } from './core'

0 commit comments

Comments
 (0)