Skip to content

Commit

Permalink
chore: correct useLogger import path
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Aug 24, 2023
1 parent b98cf0c commit c81eca1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docs/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ declare module 'vue' {
LoveVueThreeJS: typeof import('./.vitepress/theme/components/LoveVueThreeJS.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
WobbleMaterial: typeof import('./.vitepress/theme/components/WobbleMaterial.vue')['default']
WobbleMaterialDemo: typeof import('./.vitepress/theme/components/WobbleMaterialDemo.vue')['default']
}
}
2 changes: 1 addition & 1 deletion src/core/misc/useTweakPane/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { onUnmounted, onMounted } from 'vue'
import { Pane } from 'tweakpane'
import { useRenderLoop } from '@tresjs/core'
import { useLogger } from '../composables/useLogger'
import { useLogger } from '../../../composables/useLogger'

type TweakPane = Pane & { addBlade(blade: any): void }
let pane: TweakPane
Expand Down

0 comments on commit c81eca1

Please sign in to comment.