Skip to content

Commit c9bad57

Browse files
chore(vue): remove logging
1 parent 1cab628 commit c9bad57

File tree

1 file changed

+0
-4
lines changed
  • packages/node_modules/overmind-vue/src

1 file changed

+0
-4
lines changed

packages/node_modules/overmind-vue/src/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,6 @@ export function createStateHook<Config extends IConfiguration>(): StateHook<Conf
206206
value.currentFlushId = flushId
207207
value.isUpdating = true
208208
flushIds.value = flushId
209-
console.log("WTU?", flushId)
210-
console.log(state)
211209
state.value = {
212210
...(cb ? cb(overmindInstance.state) : overmindInstance.state)
213211
}
@@ -218,7 +216,6 @@ export function createStateHook<Config extends IConfiguration>(): StateHook<Conf
218216
}
219217

220218
onBeforeUpdate(function (this: any, ...args) {
221-
console.log(args, this)
222219
if (overmindInstance.mode.mode === MODE_SSR) return
223220

224221
value.tree.track(value.onUpdate)
@@ -246,7 +243,6 @@ export function createStateHook<Config extends IConfiguration>(): StateHook<Conf
246243
onMounted(() => {
247244
if (IS_PRODUCTION || overmindInstance.mode.mode === MODE_SSR) return
248245
value.tree.stopTracking()
249-
console.log("HM", value.tree)
250246
overmindInstance.eventHub.emitAsync(EventType.COMPONENT_ADD, {
251247
componentId,
252248
componentInstanceId: value.componentInstanceId,

0 commit comments

Comments
 (0)