Skip to content

Commit

Permalink
fix(core/create): fixes scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
rafamel committed Oct 18, 2019
1 parent e8206c0 commit 88bf5dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/create/scopes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function scope<T extends CollectionTree, N extends string>(
name: N,
collection: T
): ScopeCollection<T, N> {
const { types, ...other } = collection;
const { kind, types, ...other } = collection;

return {
...emptyCollection(),
Expand Down

0 comments on commit 88bf5dc

Please sign in to comment.