Skip to content

Commit

Permalink
Fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed May 11, 2019
1 parent 44d1c9a commit 8f70c54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/types/array.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { at, At, set, Context } from '@microstates/lens'
import { at, At, set, Context } from '@microstates/lens';
import { mount, valueOf } from '../meta';
import { create } from '../microstates';
import parameterized from '../parameterized';
Expand Down Expand Up @@ -109,7 +109,7 @@ export default parameterized(T => class ArrayType {
return array[key];
}
}
})
});

Tree.instance(this, {
defineChildren(fn, array) {
Expand Down
2 changes: 1 addition & 1 deletion src/types/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default parameterized(T => class ObjectType {
return mount(object, create(T, value), key);
}
}
})
});

Tree.instance(this, {
defineChildren(fn, object) {
Expand Down

0 comments on commit 8f70c54

Please sign in to comment.