Skip to content

Commit 2ba7703

Browse files
[autofix.ci] apply automated fixes
1 parent 140e907 commit 2ba7703

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/devtools-kit/src/core/component/state/process.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function processState(instance: VueAppInstance) {
9999
const props = type?.props
100100
const getters
101101
= type.vuex
102-
&& type.vuex.getters
102+
&& type.vuex.getters
103103
const computedDefs = type.computed
104104

105105
const data = {

packages/devtools-kit/src/messaging/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function setRpcClientToGlobal<R, L>(rpc: BirpcReturn<R, L>) {
5050
target.__VUE_DEVTOOLS_KIT_RPC_CLIENT__ = rpc
5151
}
5252

53-
export function setRpcServerToGlobal<R, L >(rpc: BirpcGroup<R, L>) {
53+
export function setRpcServerToGlobal<R, L>(rpc: BirpcGroup<R, L>) {
5454
target.__VUE_DEVTOOLS_KIT_RPC_SERVER__ = rpc
5555
}
5656

@@ -66,7 +66,7 @@ export function setViteRpcClientToGlobal<R, L>(rpc: BirpcReturn<R, L>) {
6666
target.__VUE_DEVTOOLS_KIT_VITE_RPC_CLIENT__ = rpc
6767
}
6868

69-
export function setViteRpcServerToGlobal<R, L >(rpc: BirpcGroup<R, L>) {
69+
export function setViteRpcServerToGlobal<R, L>(rpc: BirpcGroup<R, L>) {
7070
target.__VUE_DEVTOOLS_KIT_VITE_RPC_SERVER__ = rpc
7171
}
7272

packages/ui/src/composables/theme.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { useColorMode, type UseColorModeOptions } from '@vueuse/core'
1+
import type { UseColorModeOptions } from '@vueuse/core'
2+
import { useColorMode } from '@vueuse/core'
23
import { computed } from 'vue'
34

45
export const THEME_KEY = '__vue-devtools-theme__'

0 commit comments

Comments
 (0)