Skip to content

Commit 0606a7e

Browse files
authored
Fix blocker bug in overmind-vue
There was a wrong name used. It should be `proxyStateTreeInstance` instead of `proxyStateTree`
1 parent 91f76d8 commit 0606a7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/overmind-vue/src/vue3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function createStateHook<Config extends IConfiguration>(): StateHook<
6767
)
6868

6969
if (!value.tree) {
70-
value.tree = overmindInstance.proxyStateTree.getTrackStateTree()
70+
value.tree = overmindInstance.proxyStateTreeInstance.getTrackStateTree()
7171
value.componentInstanceId = componentInstanceId++
7272
value.onUpdate = (_: any, __: any, flushId: number) => {
7373
value.currentFlushId = flushId

0 commit comments

Comments
 (0)