diff --git a/src/features/dataset/index.ts b/src/features/dataset/index.ts index 1423ac7..780b1ac 100644 --- a/src/features/dataset/index.ts +++ b/src/features/dataset/index.ts @@ -100,8 +100,6 @@ export const createDataSet = >(data: Accessor }); const apply = (data: T[], mutations: Mutation[]) => { - console.log('APPLY', data, mutations); - for (const mutation of mutations) { const path = mutation.key.split('.'); @@ -164,8 +162,6 @@ export const createDataSet = >(data: Accessor const next = data(); const nextValue = apply(deepCopy(next), untrack(() => mutations())); - console.log('EFFECT IS CALLED'); - setState('value', nextValue); setState('snapshot', next); });