Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 27, 2025
1 parent 140e907 commit 2ba7703
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/devtools-kit/src/core/component/state/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function processState(instance: VueAppInstance) {
const props = type?.props
const getters
= type.vuex
&& type.vuex.getters
&& type.vuex.getters
const computedDefs = type.computed

const data = {
Expand Down
4 changes: 2 additions & 2 deletions packages/devtools-kit/src/messaging/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function setRpcClientToGlobal<R, L>(rpc: BirpcReturn<R, L>) {
target.__VUE_DEVTOOLS_KIT_RPC_CLIENT__ = rpc
}

export function setRpcServerToGlobal<R, L >(rpc: BirpcGroup<R, L>) {
export function setRpcServerToGlobal<R, L>(rpc: BirpcGroup<R, L>) {
target.__VUE_DEVTOOLS_KIT_RPC_SERVER__ = rpc
}

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

export function setViteRpcServerToGlobal<R, L >(rpc: BirpcGroup<R, L>) {
export function setViteRpcServerToGlobal<R, L>(rpc: BirpcGroup<R, L>) {
target.__VUE_DEVTOOLS_KIT_VITE_RPC_SERVER__ = rpc
}

Expand Down
3 changes: 2 additions & 1 deletion packages/ui/src/composables/theme.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useColorMode, type UseColorModeOptions } from '@vueuse/core'
import type { UseColorModeOptions } from '@vueuse/core'
import { useColorMode } from '@vueuse/core'
import { computed } from 'vue'

export const THEME_KEY = '__vue-devtools-theme__'
Expand Down

0 comments on commit 2ba7703

Please sign in to comment.